diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-03-30 06:43:30 +0000 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-03-30 06:43:30 +0000 |
commit | aaf34b0de81a5c88246c6903c64e9de5d15666e7 (patch) | |
tree | dcf0620c9ed4105136f132e2de9a291a4c098f98 | |
parent | da60f83fa2dfcc16eb5cac4e7c203d63287be4a7 (diff) | |
download | lm-sensors-git-aaf34b0de81a5c88246c6903c64e9de5d15666e7.tar.gz |
Add detection of ITE8790E.
Reflect that IT8620E will soon be supported by the it87 driver.
-rw-r--r-- | CHANGES | 1 | ||||
-rwxr-xr-x | prog/detect/sensors-detect | 8 |
2 files changed, 8 insertions, 1 deletions
@@ -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, } ); |