hwmon: (adt7475) Cache limits for 60 seconds
authorJean Delvare <khali@linux-fr.org>
Mon, 16 Nov 2009 11:45:40 +0000 (12:45 +0100)
committerJean Delvare <khali@linux-fr.org>
Mon, 16 Nov 2009 11:45:40 +0000 (12:45 +0100)
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>
drivers/hwmon/adt7475.c

index d15819b4fe5f3cb6c16ac76241a904eabcfec503..20579fad4a24fa8ba96aaa4c537c1723cf34b1b0 100644 (file)
@@ -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);