mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
hwmon: (pmbus) Clear sensor data after chip write
Set the sensor->data field to -ENODATA to force a chip access next time the sensor value is read. Signed-off-by: Erik Rosen <erik.rosen@metormote.com> Link: https://lore.kernel.org/r/20210201195929.1200-2-erik.rosen@metormote.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
66102281f9
commit
1ae5aaf5d1
@ -974,7 +974,7 @@ static ssize_t pmbus_set_sensor(struct device *dev,
|
||||
if (ret < 0)
|
||||
rv = ret;
|
||||
else
|
||||
sensor->data = regval;
|
||||
sensor->data = -ENODATA;
|
||||
mutex_unlock(&data->update_lock);
|
||||
return rv;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user