mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 23:46:48 +07:00
hwmon: (lm80) fix a missing check of the status of SMBus read
If lm80_read_value() fails, it returns a negative number instead of the correct read data. Therefore, we should avoid using the data if it 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> [groeck: One variable for return values is enough] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
f9facc24a6
commit
c9c6391551
@ -360,9 +360,11 @@ static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
|
|||||||
struct i2c_client *client = data->client;
|
struct i2c_client *client = data->client;
|
||||||
unsigned long min, val;
|
unsigned long min, val;
|
||||||
u8 reg;
|
u8 reg;
|
||||||
int err = kstrtoul(buf, 10, &val);
|
int rv;
|
||||||
if (err < 0)
|
|
||||||
return err;
|
rv = kstrtoul(buf, 10, &val);
|
||||||
|
if (rv < 0)
|
||||||
|
return rv;
|
||||||
|
|
||||||
/* Save fan_min */
|
/* Save fan_min */
|
||||||
mutex_lock(&data->update_lock);
|
mutex_lock(&data->update_lock);
|
||||||
@ -390,8 +392,11 @@ static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
reg = (lm80_read_value(client, LM80_REG_FANDIV) &
|
rv = lm80_read_value(client, LM80_REG_FANDIV);
|
||||||
~(3 << (2 * (nr + 1)))) | (data->fan_div[nr] << (2 * (nr + 1)));
|
if (rv < 0)
|
||||||
|
return rv;
|
||||||
|
reg = (rv & ~(3 << (2 * (nr + 1))))
|
||||||
|
| (data->fan_div[nr] << (2 * (nr + 1)));
|
||||||
lm80_write_value(client, LM80_REG_FANDIV, reg);
|
lm80_write_value(client, LM80_REG_FANDIV, reg);
|
||||||
|
|
||||||
/* Restore fan_min */
|
/* Restore fan_min */
|
||||||
|
Loading…
Reference in New Issue
Block a user