mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-30 22:05:11 +00:00
Make LM73 detection less problematic.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@5994 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -4044,7 +4044,9 @@ sub lm73_detect
|
||||
# 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);
|
||||
|
Reference in New Issue
Block a user