Changeset 4133
- Timestamp:
- 09/02/06 09:49:35 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/etc/sensors.conf.eg (modified) (1 diff)
- lm-sensors/trunk/prog/sensors/chips.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4126 r4133 56 56 Print missing w83791d values 57 57 Add w83793 support (Yuan Mu) 58 The adt7463 may not have in4 (#2119) 58 59 Program sensors-detect: Add ServerWorks HT-1000 SMBus detection 59 60 Add ATI IXP200/300/400 SMBus detection lm-sensors/trunk/etc/sensors.conf.eg
r4114 r4133 2393 2393 2394 2394 # Voltage inputs 2395 # Depending on the hardware setup, the ADT7463 may not have in4. 2395 2396 label in0 "V1.5" # AGP on Intel S845WD1-E 2396 2397 label in1 "VCore" lm-sensors/trunk/prog/sensors/chips.c
r4113 r4133 1562 1562 double cur, min, max; 1563 1563 int alarms, alarm_mask = 0, valid; 1564 int is85, is1027, is 6d100;1564 int is85, is1027, is7463, is6d100; 1565 1565 1566 1566 is85 = !strcmp(name->prefix,"lm85") … … 1569 1569 is1027 = !strcmp(name->prefix,"adm1027") 1570 1570 || !strcmp(name->prefix,"adt7463") ; 1571 is7463 = !strcmp(name->prefix, "adt7463"); 1571 1572 is6d100 = !strcmp(name->prefix,"emc6d100") ; 1572 1573 … … 1650 1651 putchar( '\n' ); 1651 1652 } 1652 } else 1653 } else if (!is7463) 1653 1654 printf("ERROR: Can't get IN4 data!\n"); 1654 1655 free(label);
