summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
}
);