mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw/i2c: Use DeviceClass::realize instead of I2CSlaveClass::init
I2CSlaveClass::init is no more used, remove it. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20180419212727.26095-3-f4bug@amsat.org> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20180528144509.15812-3-armbru@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
19473e51cc
commit
c8c9e10394
10 changed files with 36 additions and 65 deletions
|
@ -853,10 +853,9 @@ static const VMStateDescription vmstate_menelaus = {
|
|||
}
|
||||
};
|
||||
|
||||
static int twl92230_init(I2CSlave *i2c)
|
||||
static void twl92230_realize(DeviceState *dev, Error **errp)
|
||||
{
|
||||
DeviceState *dev = DEVICE(i2c);
|
||||
MenelausState *s = TWL92230(i2c);
|
||||
MenelausState *s = TWL92230(dev);
|
||||
|
||||
s->rtc.hz_tm = timer_new_ms(rtc_clock, menelaus_rtc_hz, s);
|
||||
/* Three output pins plus one interrupt pin. */
|
||||
|
@ -865,9 +864,7 @@ static int twl92230_init(I2CSlave *i2c)
|
|||
/* Three input pins plus one power-button pin. */
|
||||
qdev_init_gpio_in(dev, menelaus_gpio_set, 4);
|
||||
|
||||
menelaus_reset(i2c);
|
||||
|
||||
return 0;
|
||||
menelaus_reset(I2C_SLAVE(dev));
|
||||
}
|
||||
|
||||
static void twl92230_class_init(ObjectClass *klass, void *data)
|
||||
|
@ -875,7 +872,7 @@ static void twl92230_class_init(ObjectClass *klass, void *data)
|
|||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
I2CSlaveClass *sc = I2C_SLAVE_CLASS(klass);
|
||||
|
||||
sc->init = twl92230_init;
|
||||
dc->realize = twl92230_realize;
|
||||
sc->event = menelaus_event;
|
||||
sc->recv = menelaus_rx;
|
||||
sc->send = menelaus_tx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue