Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon: (lm90) Use programmed update rate

The lm90 driver programs the sensor chip to update its readings at 2 Hz
(500 ms between readings). However, the driver only does reads from the
chip at intervals of 2 * HZ (2000 ms between readings). Change the driver
update rate to the programmed update rate.

Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by

Ira W. Snyder and committed by
Jean Delvare
8c3c7a25 729d273a

+2 -1
+2 -1
drivers/hwmon/lm90.c
··· 982 982 983 983 mutex_lock(&data->update_lock); 984 984 985 - if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) { 985 + if (time_after(jiffies, data->last_updated + HZ / 2 + HZ / 10) 986 + || !data->valid) { 986 987 u8 h, l; 987 988 988 989 dev_dbg(&client->dev, "Updating lm90 data.\n");