2cee1ba588
- lm_sensors-r6111-detection-Winbond-W83627SF.diff: Add detection of Winbond W83627SF/GF (no sensors.) - lm_sensors-r6112-detection-AMD-family-16h.diff: Add detection of AMD family 16h power sensors. - lm_sensors-r6113-ITE-IT877x-IT878x-driver.diff: Map IT8771E, IT8772E, IT8782F and IT8783F to it87. - lm_sensors-r6117-detection-ITE-IT8752F.diff: Add detection of IT8752F. - lm_sensors-r6123-AnalogDev-ADT7410-driver.diff: We have a driver for the ADT7410 since kernel 3.7. OBS-URL: https://build.opensuse.org/package/show/Base:System/sensors?expand=0&rev=56
42 lines
1.2 KiB
Diff
42 lines
1.2 KiB
Diff
Subject: Map ITE IT8771E, IT8772E, IT8782F and IT8783F to it87
|
|
Upstream: yes, r6113
|
|
|
|
---
|
|
prog/detect/sensors-detect | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- lm_sensors-3.3.3.orig/prog/detect/sensors-detect
|
|
+++ lm_sensors-3.3.3/prog/detect/sensors-detect
|
|
@@ -2225,13 +2225,13 @@ use constant FEAT_SMBUS => (1 << 7);
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|
|
}, {
|
|
name => "ITE IT8771E Super IO Sensors",
|
|
- driver => "to-be-written", # it87
|
|
+ driver => "it87",
|
|
devid => 0x8771,
|
|
logdev => 0x04,
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|
|
}, {
|
|
name => "ITE IT8772E Super IO Sensors",
|
|
- driver => "to-be-written", # it87
|
|
+ driver => "it87",
|
|
devid => 0x8772,
|
|
logdev => 0x04,
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|
|
@@ -2243,13 +2243,13 @@ use constant FEAT_SMBUS => (1 << 7);
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|
|
}, {
|
|
name => "ITE IT8782F Super IO Sensors",
|
|
- driver => "to-be-written", # it87
|
|
+ driver => "it87",
|
|
devid => 0x8782,
|
|
logdev => 0x04,
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|
|
}, {
|
|
name => "ITE IT8783F Super IO Sensors",
|
|
- driver => "to-be-written", # it87
|
|
+ driver => "it87",
|
|
devid => 0x8783,
|
|
logdev => 0x04,
|
|
features => FEAT_IN | FEAT_FAN | FEAT_TEMP,
|