summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2014-05-12 07:14:50 +0000
committerkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2014-05-12 07:14:50 +0000
commitd5b46a7908d77659431aab7e46c7222b318f5e13 (patch)
treefb64d9ce8a42c31a8d8f08fdbd92a91ca14c38fd
parentf6ffefb15014c2b9446581a36c9fef4914d00ba7 (diff)
downloadlm-sensors-d5b46a7908d77659431aab7e46c7222b318f5e13.tar.gz
I2C address 0x2c is already probed for dozens of chips so there's no
reason to not probe it for SMSC EMC1072, EMC1073 and EMC1074. git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6248 7894878c-1315-0410-8ee3-d5d059ff63e0
-rwxr-xr-xprog/detect/sensors-detect6
1 files changed, 3 insertions, 3 deletions
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
index e90f421c..51b49360 100755
--- a/prog/detect/sensors-detect
+++ b/prog/detect/sensors-detect
@@ -1327,17 +1327,17 @@ use vars qw(@i2c_adapter_names);
}, {
name => "SMSC EMC1072",
driver => "to-be-written",
- i2c_addrs => [0x1c, 0x4c, 0x5c], # 0x2c, 0x3c, 0x6c, 0x7c not probed
+ i2c_addrs => [0x1c, 0x2c, 0x4c, 0x5c], # 0x3c, 0x6c, 0x7c not probed
i2c_detect => sub { emc1403_detect(@_, 8); },
}, {
name => "SMSC EMC1073",
driver => "to-be-written",
- i2c_addrs => [0x1c, 0x4c, 0x5c], # 0x2c, 0x3c, 0x6c, 0x7c not probed
+ i2c_addrs => [0x1c, 0x2c, 0x4c, 0x5c], # 0x3c, 0x6c, 0x7c not probed
i2c_detect => sub { emc1403_detect(@_, 9); },
}, {
name => "SMSC EMC1074",
driver => "to-be-written",
- i2c_addrs => [0x1c, 0x4c, 0x5c], # 0x2c, 0x3c, 0x6c, 0x7c not probed
+ i2c_addrs => [0x1c, 0x2c, 0x4c, 0x5c], # 0x3c, 0x6c, 0x7c not probed
i2c_detect => sub { emc1403_detect(@_, 10); },
}, {
name => "SMSC EMC1402",