Changeset 5331
- Timestamp:
- 09/10/08 09:22:06 (5 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5329 r5331 32 32 Add ITE IT8720 support 33 33 Add Texas Instruments TMP411 support 34 Prevent misdetection of W83627DHG on I2C as LM78 34 35 35 36 3.0.2 (2008-05-18) -
lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect
r5315 r5331 3614 3614 ($chip == 1 and $reg == 0x40) or 3615 3615 ($chip == 2 and ($reg & 0xfe) == 0xc0); 3616 3617 # Explicitly prevent misdetection of Winbond chips 3618 $reg = i2c_smbus_read_byte_data($file, 0x4f); 3619 return if $reg == 0xa3 || $reg == 0x5c; 3620 3616 3621 return (6); 3617 3622 }
