Changeset 2289
- Timestamp:
- 02/13/04 19:10:43 (9 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 6 modified
-
etc/sensors.conf.eg (modified) (1 diff)
-
lib/chips.c (modified) (1 diff)
-
lib/chips.h (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (1 diff)
-
prog/sensors/chips.c (modified) (1 diff)
-
prog/sensors/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/etc/sensors.conf.eg
r2282 r2289 596 596 597 597 598 chip "w83627thf-*" 598 chip "w83627thf-*" "w83637hf-*" 599 599 600 600 # Rather than an internal inverting op amp, the 627thf uses standard positive -
lm-sensors/trunk/lib/chips.c
r2288 r2289 4784 4784 /* Cheat on 83627THF for now - no separate #defines */ 4785 4785 { SENSORS_W83627THF_PREFIX, w83782d_features }, 4786 /* Cheat on 83637HF for now - no separate #defines */ 4787 { SENSORS_W83637HF_PREFIX, w83782d_features }, 4786 4788 { SENSORS_W83791D_PREFIX, w83791d_features }, 4787 4789 { SENSORS_W83L785TS_PREFIX, w83l785ts_features }, -
lm-sensors/trunk/lib/chips.h
r2280 r2289 521 521 #define SENSORS_W83627HF_PREFIX "w83627hf" 522 522 #define SENSORS_W83627THF_PREFIX "w83627thf" 523 #define SENSORS_W83637HF_PREFIX "w83637hf" 523 524 524 525 #define SENSORS_W83791D_PREFIX "w83791d" -
lm-sensors/trunk/prog/detect/sensors-detect
r2283 r2289 1436 1436 { 1437 1437 name => "Winbond W83637HF Super IO Sensors", 1438 driver => " to-be-written",1438 driver => "w83627hf", 1439 1439 addrreg => 0x2e, 1440 1440 exitreg => 0x2e, -
lm-sensors/trunk/prog/sensors/chips.c
r2271 r2289 2085 2085 is82d = (!strcmp(name->prefix,"w83782d")) || 2086 2086 (!strcmp(name->prefix,"w83627hf")) || 2087 (!strcmp(name->prefix,"w83637hf")) || 2087 2088 (!strcmp(name->prefix,"w83627thf")); 2088 2089 is83s = !strcmp(name->prefix,"w83783s"); 2089 is627thf = !strcmp(name->prefix,"w83627thf"); 2090 is627thf = (!strcmp(name->prefix,"w83627thf")) || 2091 (!strcmp(name->prefix,"w83637hf")); 2090 2092 is697hf = !strcmp(name->prefix,"w83697hf"); 2091 2093 -
lm-sensors/trunk/prog/sensors/main.c
r2261 r2289 386 386 { "w83627hf", print_w83781d }, 387 387 { "w83627thf", print_w83781d }, 388 { "w83637hf", print_w83781d }, 388 389 { "w83697hf", print_w83781d }, 389 390 { "w83791d", print_w83781d },
