summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgroeck <groeck@7894878c-1315-0410-8ee3-d5d059ff63e0>2015-03-30 06:43:30 +0000
committergroeck <groeck@7894878c-1315-0410-8ee3-d5d059ff63e0>2015-03-30 06:43:30 +0000
commitd9983967a89382f64c65db67026f85f073ef9b74 (patch)
treedcf0620c9ed4105136f132e2de9a291a4c098f98
parent9ad518071b615e8e2a4862542c55e5b9e96365c7 (diff)
downloadlm-sensors-d9983967a89382f64c65db67026f85f073ef9b74.tar.gz
Add detection of ITE8790E.
Reflect that IT8620E will soon be supported by the it87 driver. git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6279 7894878c-1315-0410-8ee3-d5d059ff63e0
-rw-r--r--CHANGES1
-rwxr-xr-xprog/detect/sensors-detect8
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 3d710c02..a5eb974b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -35,6 +35,7 @@ SVN HEAD
Add detection of TSE2004 and TS3001
Document driver support for NCT7802Y
Add detection of NCT7904D
+ Add detection of IT8790E
3.3.5 "Happy Birthday Beddy" (2014-01-22)
libsensors: Improve documentation of two functions
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
index 436cf956..08721f0a 100755
--- a/prog/detect/sensors-detect
+++ b/prog/detect/sensors-detect
@@ -2303,7 +2303,7 @@ use constant FEAT_SMBUS => (1 << 7);
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
}, {
name => "ITE IT8620E Super IO Sensors",
- driver => "to-be-written", # it87
+ driver => "it87",
devid => 0x8620,
logdev => 0x04,
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
@@ -2427,6 +2427,12 @@ use constant FEAT_SMBUS => (1 << 7);
devid => 0x8786,
logdev => 0x04,
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
+ }, {
+ name => "ITE IT8790E Super IO Sensors",
+ driver => "it87",
+ devid => 0x8790,
+ logdev => 0x04,
+ features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
}
);