Changeset 3379
- Timestamp:
- 09/18/99 22:56:40 (14 years ago)
- Location:
- i2c/trunk
- Files:
-
- 3 modified
-
TODO (modified) (2 diffs)
-
kernel/i2c-core.c (modified) (1 diff)
-
mkpatch/FILES (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/TODO
r3346 r3379 10 10 * Pretty-print everything as in the kernel code guidelines (found in 11 11 linux-x.y.x/Documentation) 12 * Create wait-queues for bus locking instead of pure semaphores in the i2c13 base modules, to make it more interactive (right now one process can14 monopolize the entire adapter)15 12 * linux/Documentation/devices.txt lists i2c0, i2c1 etc. instead of i2c-0, i2c-1 16 13 * Find some solution for block reads in smbus-on-i2c emulation code … … 18 15 * At least the bit-lp and bit-velle modules do no detection on loading; 19 16 ask Simon whether this is possible to add. 17 * i2c-dev can't cope with mixed read/write I2C transactions. We need a 18 new IOCTL which uses messages like the i2c_transfer function 19 * MORE DOCUMENTATION! -
i2c/trunk/kernel/i2c-core.c
r3373 r3379 601 601 /* Filter out dummy clients */ 602 602 if (client->driver->id != I2C_DRIVERID_I2CDEV) 603 len += sprintf(kbuf+len,"% x\t%-32s\t%-32s\n",603 len += sprintf(kbuf+len,"%02x\t%-32s\t%-32s\n", 604 604 client->addr, 605 605 client->name,client->driver->name); -
i2c/trunk/mkpatch/FILES
r3329 r3379 15 15 mkpatch/Config.in drivers/i2c/Config.in 16 16 mkpatch/Makefile drivers/i2c/Makefile 17 doc/proc-interface Documentation/i2c/proc-interface 18 doc/dev-interface Documentation/i2c/dev-interface 19 doc/smbus-protocol Documentation/i2c/smbus-protocol 20 doc/ten-bit-addresses Documentation/i2c/ten-bit-addresses 21 doc/summary Documentation/i2c/summary
