Changeset 2204 for lm-sensors/trunk/lib/proc.c
- Timestamp:
- 01/05/04 21:39:59 (9 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/lib/proc.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/lib/proc.c
r2197 r2204 422 422 in%d_min -> in_min%d 423 423 in%d -> in_input%d 424 temp%d_over -> temp_max%d (to be changed after kernel patch)425 temp%d_hyst -> temp_ min%d ("")424 temp%d_over -> temp_max%d 425 temp%d_hyst -> temp_hyst%d 426 426 temp%d_max -> temp_max%d 427 427 temp%d_high -> temp_max%d … … 459 459 { "remote_temp_over", "temp_max2", TEMPMAG }, 460 460 { "temp", "temp_input1", TEMPMAG }, 461 { "temp_hyst", "temp_ min1", TEMPMAG }, /* kernel patch pending for hyst */461 { "temp_hyst", "temp_hyst1", TEMPMAG }, 462 462 { "temp_low", "temp_min1", TEMPMAG }, 463 463 { "temp_over", "temp_max1", TEMPMAG }, … … 531 531 532 532 if(sscanf(name, "temp%d_hys%c%c", &num, &last, &check) == 2 && last == 't') { 533 sprintf(sysname, "temp_ min%d", num); /* kernel patch pending for hyst */533 sprintf(sysname, "temp_hyst%d", num); 534 534 *sysmag = TEMPMAG; 535 535 return 0;
