Changeset 4089
- Timestamp:
- 08/09/06 09:20:54 (7 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 5 modified
-
CHANGES (modified) (2 diffs)
-
lib/chips.c (modified) (1 diff)
-
lib/chips.h (modified) (1 diff)
-
prog/sensord/chips.c (modified) (2 diffs)
-
prog/sensors/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4086 r4089 12 12 Fix all memory leaks (yeah!) 13 13 Fix no sensors being reported as an error 14 Add support for the IT8716F chip14 Add support for the IT8716F and IT8718F chips 15 15 Makefile: Don't grep autoconf.h on user-space targets 16 16 Fix depmod on non-running kernel version … … 46 46 Add abituguru support (Hans de Goede) 47 47 Fix memory leak when printing an unknown chip 48 Add it8716 support48 Add it8716 and it8718 support 49 49 Make each it87 fan and fan div optional 50 50 Program sensors-detect: Add ServerWorks HT-1000 SMBus detection -
lm-sensors/trunk/lib/chips.c
r4083 r4089 5906 5906 { SENSORS_IT8712_PREFIX, it87_features }, 5907 5907 { SENSORS_IT8716_PREFIX, it87_features }, 5908 { SENSORS_IT8718_PREFIX, it87_features }, 5908 5909 { SENSORS_FSCPOS_PREFIX, fscpos_features }, 5909 5910 { SENSORS_FSCSCY_PREFIX, fscscy_features }, -
lm-sensors/trunk/lib/chips.h
r4083 r4089 1543 1543 #define SENSORS_IT8712_PREFIX "it8712" 1544 1544 #define SENSORS_IT8716_PREFIX "it8716" 1545 #define SENSORS_IT8718_PREFIX "it8718" 1545 1546 1546 1547 #define SENSORS_IT87_IN0 1 /* R */ -
lm-sensors/trunk/prog/sensord/chips.c
r4083 r4089 548 548 static const char *it87_names[] = { 549 549 SENSORS_IT87_PREFIX, SENSORS_IT8712_PREFIX, 550 SENSORS_IT8716_PREFIX, NULL550 SENSORS_IT8716_PREFIX, SENSORS_IT8718_PREFIX, NULL 551 551 }; 552 552 … … 569 569 { SENSORS_IT87_IN7, SENSORS_IT87_IN7_MIN, SENSORS_IT87_IN7_MAX, -1 } }, 570 570 { fmtFans_0, rrdF0, DataType_rpm, IT87_ALARM_FAN1, 0, 571 { SENSORS_IT87_FAN1, SENSORS_IT87_FAN1_MIN, SENSORS_IT87_FAN1_DIV,-1 } },571 { SENSORS_IT87_FAN1, SENSORS_IT87_FAN1_MIN, -1 } }, 572 572 { fmtFans_0, rrdF0, DataType_rpm, IT87_ALARM_FAN2, 0, 573 { SENSORS_IT87_FAN2, SENSORS_IT87_FAN2_MIN, SENSORS_IT87_FAN2_DIV,-1 } },573 { SENSORS_IT87_FAN2, SENSORS_IT87_FAN2_MIN, -1 } }, 574 574 { fmtFans_0, rrdF0, DataType_rpm, IT87_ALARM_FAN3, 0, 575 { SENSORS_IT87_FAN3, SENSORS_IT87_FAN3_MIN, SENSORS_IT87_FAN3_DIV,-1 } },575 { SENSORS_IT87_FAN3, SENSORS_IT87_FAN3_MIN, -1 } }, 576 576 { fmtTemps_minmax_0, rrdF1, DataType_temperature, IT87_ALARM_TEMP1, 0, 577 577 { SENSORS_IT87_TEMP1, SENSORS_IT87_TEMP1_LOW, SENSORS_IT87_TEMP1_HIGH, -1 } }, -
lm-sensors/trunk/prog/sensors/main.c
r4083 r4089 383 383 { "it8712", print_it87 }, 384 384 { "it8716", print_it87 }, 385 { "it8718", print_it87 }, 385 386 { "ddcmon", print_ddcmon }, 386 387 { "eeprom", print_eeprom },
