diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-14 22:35:08 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-14 22:35:08 +0100 |
commit | e325e1f83e803922e5d33b47203d49e4ba2d5a0a (patch) | |
tree | 5cc0f72e2d0ac9d6d21e93e504f6a32f75ab0ab7 /hw/i2c.h | |
parent | 0077147eab09ec56d27194cc1c6135f2b39ad652 (diff) |
I2C cleanup
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/i2c.h')
-rw-r--r-- | hw/i2c.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -36,10 +36,6 @@ struct i2c_slave { DeviceState qdev; I2CSlaveInfo *info; - /* FIXME: These 3 should go away once all devices have been converted. */ - i2c_event_cb event; - i2c_recv_cb recv; - i2c_send_cb send; /* Remaining fields for internal use by the I2C code. */ int address; @@ -48,7 +44,6 @@ struct i2c_slave }; i2c_bus *i2c_init_bus(void); -i2c_slave *i2c_slave_init(i2c_bus *bus, int address, int size); void i2c_set_slave_address(i2c_slave *dev, int address); int i2c_bus_busy(i2c_bus *bus); int i2c_start_transfer(i2c_bus *bus, int address, int recv); |