Changeset 5994
- Timestamp:
- 08/31/11 10:34:15 (21 months ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5993 r5994 7 7 Print DMI system/product version if available 8 8 Fix loading of the cpuid module 9 Make LM73 detection less problematic 9 10 10 11 3.3.1 (2011-07-21) -
lm-sensors/trunk/prog/detect/sensors-detect
r5993 r5994 4045 4045 return if ($conf & 0x0c) or ($status & 0x10); 4046 4046 4047 return if i2c_smbus_read_word_data($file, 0x07) != 0x9001; 4047 # Test with byte read first to avoid confusing other chips 4048 return if i2c_smbus_read_byte_data($file, 0x07) != 0x01 4049 or i2c_smbus_read_word_data($file, 0x07) != 0x9001; 4048 4050 4049 4051 # Make sure the chip supports SMBus read word transactions
