Changeset 717
- Timestamp:
- 01/30/00 02:21:49 (13 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
doc/chips/eeprom (modified) (1 diff)
-
kernel/chips/eeprom.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/doc/chips/eeprom
r402 r717 69 69 these EEPROMs. 70 70 71 The driver caches the data from the monitor and only rereads it 72 from the eeprom if the cache is more than 5 minutes old. 73 71 74 72 75 DECODE_DIMMS.PL -
lm-sensors/trunk/kernel/chips/eeprom.c
r710 r717 320 320 down(&data->update_lock); 321 321 322 if ((jiffies - data->last_updated > HZ + HZ / 2) ||322 if ((jiffies - data->last_updated > 300 * HZ) | 323 323 (jiffies < data->last_updated) || !data->valid) { 324 324
