Changeset 4059
- Timestamp:
- 06/23/06 20:39:51 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4055 r4059 17 17 Module i2c-i801: Disable PEC mode after every transaction (2.6 backport) 18 18 Add ICH8 support (2.6 backport) 19 Fix block transaction poll loops (2.6 backport) 19 20 Module i2c-nforce2: Add nForce4 MCP51, MCP55 support (2.6 backport) 20 21 Module i2c-piix4: Add ServerWorks HT-1000 support (2.6 backport) lm-sensors/trunk/kernel/busses/i2c-i801.c
r3304 r4059 394 394 timeout = 0; 395 395 do { 396 i2c_delay(1); 396 397 temp = inb_p(SMBHSTSTS); 397 i2c_delay(1);398 398 } 399 399 while ((!(temp & 0x80)) … … 458 458 timeout = 0; 459 459 do { 460 i2c_delay(1); 460 461 temp = inb_p(SMBHSTSTS); 461 i2c_delay(1);462 462 } while ((!(temp & 0x02)) 463 463 && (timeout++ < MAX_TIMEOUT));
