OSDN Git Service

hwmon: (lm80) fix a missing check of bus read in lm80 probe
authorKangjie Lu <kjlu@umn.edu>
Fri, 21 Dec 2018 19:10:39 +0000 (13:10 -0600)
committerGuenter Roeck <linux@roeck-us.net>
Fri, 21 Dec 2018 23:37:59 +0000 (15:37 -0800)
commit9aa3aa15f4c2f74f47afd6c5db4b420fadf3f315
treec2c28bd0c63dfda8b188d00492d1fe6d2375f0a5
parentc9c63915519b1def7043b184680f33c24cd49d7b
hwmon: (lm80) fix a missing check of bus read in lm80 probe

In lm80_probe(), if lm80_read_value() fails, it returns a negative
error number which is stored to data->fan[f_min] and will be further
used. We should avoid using the data if the read fails.

The fix checks if lm80_read_value() fails, and if so, returns with the
error number.

Signed-off-by: Kangjie Lu <kjlu@umn.edu>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/lm80.c