- Timestamp:
- 01/17/10 12:32:11 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-2.10/kernel/busses/i2c-ali1563.c
r4324 r5816 93 93 94 94 timeout = ALI1563_MAX_TIMEOUT; 95 do 95 do { 96 96 i2c_delay(1); 97 while (((data = inb_p(SMB_HST_STS)) & HST_STS_BUSY) && --timeout);97 } while (((data = inb_p(SMB_HST_STS)) & HST_STS_BUSY) && --timeout); 98 98 99 99 printk(KERN_DEBUG "ali1563: Transaction (post): STS=%02x, CNTL1=%02x, " … … 163 163 164 164 timeout = ALI1563_MAX_TIMEOUT; 165 do 165 do { 166 166 i2c_delay(1); 167 while (!((data = inb_p(SMB_HST_STS)) & HST_STS_DONE) && --timeout);167 } while (!((data = inb_p(SMB_HST_STS)) & HST_STS_DONE) && --timeout); 168 168 169 169 printk(KERN_DEBUG "ali1563: Block (post): STS=%02x, CNTL1=%02x, "
