Same idea as the change just made to the lm73 driver itself: do as much detection as possible with byte reads. Index: prog/detect/sensors-detect =================================================================== --- prog/detect/sensors-detect (révision 5993) +++ prog/detect/sensors-detect (copie de travail) @@ -4044,7 +4044,9 @@ # Bits that always return 0 return if ($conf & 0x0c) or ($status & 0x10); - return if i2c_smbus_read_word_data($file, 0x07) != 0x9001; + # Test with byte read first to avoid confusing other chips + return if i2c_smbus_read_byte_data($file, 0x07) != 0x01 + or i2c_smbus_read_word_data($file, 0x07) != 0x9001; # Make sure the chip supports SMBus read word transactions my $cur = i2c_smbus_read_word_data($file, 0x00); -- Jean Delvare _______________________________________________ lm-sensors mailing list lm-sensors@xxxxxxxxxxxxxx http://lists.lm-sensors.org/mailman/listinfo/lm-sensors