mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-09-01 06:45:24 +00:00
Fix detection of ADT7463 and LM96000.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5352 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -3,6 +3,7 @@ lm-sensors CHANGES file
|
||||
|
||||
SVN-HEAD
|
||||
maxilife scripts: Delete (driver never ported to Linux 2.6)
|
||||
sensors-detect: Fix detection of ADT7463 and LM96000
|
||||
|
||||
3.0.3 (2008-09-28)
|
||||
libsensors: Avoid namespace pollution
|
||||
|
@@ -4522,13 +4522,15 @@ sub lm85_detect
|
||||
&& $verstep != 0x62; # LM85 B
|
||||
} elsif ($chip == 1) {
|
||||
return if $vendor != 0x01; # National Semiconductor
|
||||
return if $verstep != 0x68; # LM96000
|
||||
return if $verstep != 0x68 # LM96000
|
||||
&& $verstep != 0x69; # LM96000
|
||||
} elsif ($chip == 2) {
|
||||
return if $vendor != 0x41; # Analog Devices
|
||||
return if $verstep != 0x60; # ADM1027
|
||||
} elsif ($chip == 3) {
|
||||
return if $vendor != 0x41; # Analog Devices
|
||||
return if $verstep != 0x62; # ADT7463
|
||||
return if $verstep != 0x62 # ADT7463
|
||||
&& $verstep != 0x6a; # ADT7463 C
|
||||
} elsif ($chip == 4) {
|
||||
return if $vendor != 0x5c; # SMSC
|
||||
return if $verstep != 0x60 # EMC6D100/101 A0
|
||||
|
Reference in New Issue
Block a user