summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2015-05-28 06:01:18 +0000
committerkhali <khali@7894878c-1315-0410-8ee3-d5d059ff63e0>2015-05-28 06:01:18 +0000
commit305991b604bf30e1262a571d3cd1be21e481ad8f (patch)
tree77054ad3ed9fedf24f8dd4ce195f1954a3b7f615
parent060ae3b6b2fcc3d3f1afe22ef97c6d80ede90fac (diff)
downloadlm-sensors-305991b604bf30e1262a571d3cd1be21e481ad8f.tar.gz
Don't probe address 0x37 for TMP435, this address is known to be
problematic. git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6281 7894878c-1315-0410-8ee3-d5d059ff63e0
-rwxr-xr-xprog/detect/sensors-detect4
1 files changed, 2 insertions, 2 deletions
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
index 08721f0a..cd3e662e 100755
--- a/prog/detect/sensors-detect
+++ b/prog/detect/sensors-detect
@@ -2,7 +2,7 @@
#
# sensors-detect - Detect hardware monitoring chips
# Copyright (C) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>
-# Copyright (C) 2004 - 2014 Jean Delvare <jdelvare@suse.de>
+# Copyright (C) 2004 - 2015 Jean Delvare <jdelvare@suse.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -1060,7 +1060,7 @@ use vars qw(@i2c_adapter_names);
}, {
name => "Texas Instruments TMP435",
driver => "tmp401",
- i2c_addrs => [0x37, 0x48..0x4f],
+ i2c_addrs => [0x48..0x4f], # 0x37 not probed
i2c_detect => sub { tmp401_detect(@_, 7); },
}, {
name => "Texas Instruments TMP441",