Changeset 4188
- Timestamp:
- 09/28/06 14:13:38 (7 years ago)
- Location:
- i2c/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/i2c.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/CHANGES
r4180 r4188 9 9 10 10 2.10.2 (2006????) 11 i2c.h: Drop declaration of unimplemented slave functions (2.6 backport) 11 12 12 13 2.10.1 (20060924) -
i2c/trunk/kernel/i2c.h
r4180 r4188 72 72 */ 73 73 extern int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],int num); 74 75 /*76 * Some adapter types (i.e. PCF 8584 based ones) may support slave behaviuor.77 * This is not tested/implemented yet and will change in the future.78 */79 extern int i2c_slave_send(struct i2c_client *,char*,int);80 extern int i2c_slave_recv(struct i2c_client *,char*,int);81 82 74 83 75
