Changeset 4751
- Timestamp:
- 09/04/07 17:59:33 (1 year ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/lib/proc.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4749 r4751 10 10 Fix adm1024 support for Linux 2.6 11 11 Fix maxilife support for Linux 2.6 12 Fix magnitude of temperature offsets in Linux 2.6 12 13 Makefile: Fix kernel version detection (#2187) 13 14 Module fscher: Add missing read of control register (2.6 backport) lm-sensors/trunk/lib/proc.c
r4750 r4751 291 291 temp%d_crit -> temp%d_crit (for magnitude) 292 292 temp%d_state -> temp%d_status 293 temp%d_offset -> temp%d_offset (for magnitude) 293 294 temp%d -> temp%d_input 294 295 sensor%d -> temp%d_type … … 415 416 return 0; 416 417 } 418 if(sscanf(name, "temp%d_offse%c%c", &num, &last, &check) == 2 && last == 't') { 419 sprintf(sysname, "temp%d_offset", num); 420 *sysmag = TEMPMAG; 421 return 0; 422 } 417 423 if(sscanf(name, "temp%d%c", &num, &check) == 1) { 418 424 sprintf(sysname, "temp%d_input", num);
