commit | 9aa3aa15f4c2f74f47afd6c5db4b420fadf3f315 | [log] [tgz] |
---|---|---|
author | Kangjie Lu <kjlu@umn.edu> | Fri Dec 21 13:10:39 2018 -0600 |
committer | Guenter Roeck <linux@roeck-us.net> | Fri Dec 21 15:37:59 2018 -0800 |
tree | c2c28bd0c63dfda8b188d00492d1fe6d2375f0a5 | |
parent | c9c63915519b1def7043b184680f33c24cd49d7b [diff] |
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>