Changeset 5215
- Timestamp:
- 05/01/08 12:21:30 (4 months ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-piix4.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5213 r5215 5 5 Library: Don't choke on unrecognized devices, part 2 6 6 Module i2c-i801: Drop broken I2C block read support 7 Module i2c-piix4: Minor cleanups (2.6 backport) 7 8 Program sensors-detect: New device ID for the SMSC SCH5317 8 9 Add SMSC SCH5127 detection lm-sensors/trunk/kernel/busses/i2c-piix4.c
r4739 r5215 39 39 #include <linux/i2c.h> 40 40 #include <linux/init.h> 41 #include <linux/apm_bios.h>42 41 #include <asm/io.h> 43 42 #include "version.h" … … 380 379 381 380 switch (size) { 382 case PIIX4_BYTE: /* Where is the result put? I assume here it is in 383 SMBHSTDAT0 but it might just as well be in the 384 SMBHSTCMD. No clue in the docs */ 385 386 data->byte = inb_p(SMBHSTDAT0); 387 break; 381 case PIIX4_BYTE: 388 382 case PIIX4_BYTE_DATA: 389 383 data->byte = inb_p(SMBHSTDAT0);
