- Timestamp:
- 09/23/07 14:16:50 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/prog/sensors/chips.c
r4837 r4838 436 436 while ((feature = sensors_get_features(name, &i))) { 437 437 switch (feature->type) { 438 case SENSORS_ SUBFEATURE_TEMP_INPUT:438 case SENSORS_FEATURE_TEMP: 439 439 print_chip_temp(name, feature, label_size); 440 440 break; 441 case SENSORS_ SUBFEATURE_IN_INPUT:441 case SENSORS_FEATURE_IN: 442 442 print_chip_in(name, feature, label_size); 443 443 break; 444 case SENSORS_ SUBFEATURE_FAN_INPUT:444 case SENSORS_FEATURE_FAN: 445 445 print_chip_fan(name, feature, label_size); 446 446 break; 447 case SENSORS_ SUBFEATURE_VID:447 case SENSORS_FEATURE_VID: 448 448 print_chip_vid(name, feature, label_size); 449 449 break; 450 case SENSORS_ SUBFEATURE_BEEP_ENABLE:450 case SENSORS_FEATURE_BEEP_ENABLE: 451 451 print_chip_beep_enable(name, feature, label_size); 452 452 break;
