Changeset 4237
- Timestamp:
- 11/13/06 20:32:39 (7 years ago)
- Location:
- i2c/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/i2c-elv.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/CHANGES
r4215 r4237 15 15 i2c-core: Drop useless bitmasking (2.6 backport) 16 16 i2c-algo-bit: Cleanups (2.6 backport) 17 i2c-elv: Fix test during device initialization (Willy Tarreau) 17 18 18 19 2.10.1 (20060924) -
i2c/trunk/kernel/i2c-elv.c
r3935 r4237 98 98 outb(0x0c,base+2); /* SLCT auf low */ 99 99 udelay(400); 100 if (!(inb(base+1) & &0x10)) {100 if (!(inb(base+1) & 0x10)) { 101 101 outb(0x04,base+2); 102 102 DEBINIT(printk(KERN_DEBUG "i2c-elv.o: Select was high.\n"));
