Skip to content

Commit

Permalink
hwmon: (adt7475) Cache limits for 60 seconds
Browse files Browse the repository at this point in the history
The comment says that limits are cached for 60 seconds but the code
actually caches them for only 2 seconds. Align the code on the
comment, as 60 seconds makes more sense.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Cc: Jordan Crouse <jordan@cosmicpenguin.net>
  • Loading branch information
Jean Delvare committed Nov 16, 2009
1 parent cf312e0 commit 56e35ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/hwmon/adt7475.c
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ static struct adt7475_data *adt7475_update_device(struct device *dev)
}

/* Limits and settings, should never change update every 60 seconds */
if (time_after(jiffies, data->limits_updated + HZ * 2) ||
if (time_after(jiffies, data->limits_updated + HZ * 60) ||
!data->valid) {
data->config5 = adt7475_read(REG_CONFIG5);

Expand Down

0 comments on commit 56e35ee

Please sign in to comment.