Changeset 2239
- Timestamp:
- 01/22/04 02:05:49 (9 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (2 diffs)
-
kernel/chips/bmcsensors.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r2236 r2239 25 25 Library: Better 2.6 eeprom support 26 26 Change it87 hyst to low 27 Module bmcsensors: Fix reservations 28 Module eeprom: Remove memtype 27 29 Program decode-vaio.pl: Add sysfs support 28 30 Program mkpatch: Add max6650, lm83, lm90, asb100 and w83l785ts … … 51 53 Program mkpatch: Add lm75.h 52 54 Program pwmconfig: Improvements, fixes, support 2.6 kernels 55 Program sensors: Add ASB100 support 53 56 Program sensors-detect: Add 8712 Super I/O detection; 54 57 add W83L785TS detection -
lm-sensors/trunk/kernel/chips/bmcsensors.c
r2017 r2239 608 608 case STATE_INIT: 609 609 case STATE_RESERVE: 610 resid = (((u16)msg->data[2]) << 8) | |msg->data[1];610 resid = (((u16)msg->data[2]) << 8) | msg->data[1]; 611 611 #ifdef DEBUG 612 612 printk(KERN_DEBUG "bmcsensors.o: Got first resid 0x%.4x\n", resid); … … 626 626 627 627 case STATE_UNCANCEL: 628 resid = (((u16)msg->data[2]) << 8) | |msg->data[1];628 resid = (((u16)msg->data[2]) << 8) | msg->data[1]; 629 629 #ifdef DEBUG 630 630 printk(KERN_DEBUG "bmcsensors.o: Got new resid 0x%.4x\n", resid);
