hwmon: (lm90) Fix sysfs and udev notifications
[ Upstream commitd379880d9a
] sysfs and udev notifications need to be sent to the _alarm attributes, not to the value attributes. Fixes:94dbd23ed8
("hwmon: (lm90) Use hwmon_notify_event()") Cc: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
f4a61d7989
Коммит
774a6ef814
|
@ -1808,22 +1808,22 @@ static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
|
||||||
|
|
||||||
if (st & LM90_STATUS_LLOW)
|
if (st & LM90_STATUS_LLOW)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_min, 0);
|
hwmon_temp_min_alarm, 0);
|
||||||
if (st & LM90_STATUS_RLOW)
|
if (st & LM90_STATUS_RLOW)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_min, 1);
|
hwmon_temp_min_alarm, 1);
|
||||||
if (st2 & MAX6696_STATUS2_R2LOW)
|
if (st2 & MAX6696_STATUS2_R2LOW)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_min, 2);
|
hwmon_temp_min_alarm, 2);
|
||||||
if (st & LM90_STATUS_LHIGH)
|
if (st & LM90_STATUS_LHIGH)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_max, 0);
|
hwmon_temp_max_alarm, 0);
|
||||||
if (st & LM90_STATUS_RHIGH)
|
if (st & LM90_STATUS_RHIGH)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_max, 1);
|
hwmon_temp_max_alarm, 1);
|
||||||
if (st2 & MAX6696_STATUS2_R2HIGH)
|
if (st2 & MAX6696_STATUS2_R2HIGH)
|
||||||
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
hwmon_notify_event(data->hwmon_dev, hwmon_temp,
|
||||||
hwmon_temp_max, 2);
|
hwmon_temp_max_alarm, 2);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче