OSDN Git Service

hwmon: Deal with errors from the thermal subsystem
authorLinus Walleij <linus.walleij@linaro.org>
Tue, 5 Dec 2017 08:36:14 +0000 (09:36 +0100)
committerGuenter Roeck <linux@roeck-us.net>
Tue, 26 Dec 2017 19:53:24 +0000 (11:53 -0800)
commit47c332deb8e89f6c59b0bb2615945c6e7fad1a60
tree86b585de3fcba6bde939ade2c22631d3e4ba5555
parent464e1d5f23cca236b930ef068c328a64cab78fb1
hwmon: Deal with errors from the thermal subsystem

If the thermal subsystem returne -EPROBE_DEFER or any other error
when hwmon calls devm_thermal_zone_of_sensor_register(), this is
silently ignored.

I ran into this with an incorrectly defined thermal zone, making
it non-existing and thus this call failed with -EPROBE_DEFER
assuming it would appear later. The sensor was still added
which is incorrect: sensors must strictly be added after the
thermal zones, so deferred probe must be respected.

Fixes: d560168b5d0f ("hwmon: (core) New hwmon registration API")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/hwmon.c