diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-04 20:39:20 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-01-27 10:50:47 -0600 |
commit | b5ea932781954355a9880e2744722cd05cc496f9 (patch) | |
tree | f47482844578c1dffdae93dc3ec103a101097a71 /hw/lm832x.c | |
parent | 9e07bdf816b186632cda9651ac29bba76d299c03 (diff) |
i2c: smbus: convert to QEMU Object Model
This converts two types because smbus is implemented as a subclass of i2c. It's
extremely difficult to convert these two independently.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/lm832x.c')
-rw-r--r-- | hw/lm832x.c | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/hw/lm832x.c b/hw/lm832x.c index 9e53cb3554..84f81fe132 100644 --- a/hw/lm832x.c +++ b/hw/lm832x.c @@ -494,14 +494,21 @@ void lm832x_key_event(DeviceState *dev, int key, int state) lm_kbd_irq_update(s); } -static I2CSlaveInfo lm8323_info = { - .qdev.name = "lm8323", - .qdev.size = sizeof(LM823KbdState), - .qdev.vmsd = &vmstate_lm_kbd, - .init = lm8323_init, - .event = lm_i2c_event, - .recv = lm_i2c_rx, - .send = lm_i2c_tx +static void lm8323_class_init(ObjectClass *klass, void *data) +{ + I2CSlaveClass *k = I2C_SLAVE_CLASS(klass); + + k->init = lm8323_init; + k->event = lm_i2c_event; + k->recv = lm_i2c_rx; + k->send = lm_i2c_tx; +} + +static DeviceInfo lm8323_info = { + .name = "lm8323", + .size = sizeof(LM823KbdState), + .vmsd = &vmstate_lm_kbd, + .class_init = lm8323_class_init, }; static void lm832x_register_devices(void) |