diff options
Diffstat (limited to 'hw/i2c.h')
-rw-r--r-- | hw/i2c.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,12 +46,12 @@ void i2c_slave_save(QEMUFile *f, i2c_slave *dev); void i2c_slave_load(QEMUFile *f, i2c_slave *dev); /* max111x.c */ -struct max111x_s; +typedef struct MAX111xState MAX111xState; uint32_t max111x_read(void *opaque); void max111x_write(void *opaque, uint32_t value); -struct max111x_s *max1110_init(qemu_irq cb); -struct max111x_s *max1111_init(qemu_irq cb); -void max111x_set_input(struct max111x_s *s, int line, uint8_t value); +MAX111xState *max1110_init(qemu_irq cb); +MAX111xState *max1111_init(qemu_irq cb); +void max111x_set_input(MAX111xState *s, int line, uint8_t value); /* max7310.c */ i2c_slave *max7310_init(i2c_bus *bus); |