Changeset 5727
- Timestamp:
- 05/20/09 09:21:19 (4 years ago)
- Location:
- i2c/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/i2c-algo-bit.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/CHANGES
r5688 r5727 12 12 doc/writing-clients: Cleanups (2.6 backport) 13 13 i2c.h: Drop I2C_FUNC_SMBUS_*I2C_BLOCK_2 defines (2.6 backport) 14 i2c-algo-bit: Fix timeout test (2.6 backport) 14 15 i2c-core: Drop Linux 2.4 incompatibility mode 15 16 Fix misplaced parentheses (2.6 backport) -
i2c/trunk/kernel/i2c-algo-bit.c
r4388 r5727 96 96 * while they are processing data internally. 97 97 */ 98 if (time_after _eq(jiffies, start+adap->timeout)) {98 if (time_after(jiffies, start + adap->timeout)) 99 99 return -ETIMEDOUT; 100 }101 100 if (current->need_resched) 102 101 schedule();
