hw/ssi/pl022: Don't directly call vmstate_register()

Use the DeviceState vmsd pointer rather than calling vmstate_register()
directly.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20180820141116.9118-18-peter.maydell@linaro.org
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
master
Peter Maydell 2018-08-24 13:17:45 +01:00
parent 66d9aa790f
commit 275ff67f40
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,6 @@ static int pl022_init(SysBusDevice *sbd)
sysbus_init_mmio(sbd, &s->iomem);
sysbus_init_irq(sbd, &s->irq);
s->ssi = ssi_create_bus(dev, "ssi");
vmstate_register(dev, -1, &vmstate_pl022, s);
return 0;
}
@ -290,6 +289,7 @@ static void pl022_class_init(ObjectClass *klass, void *data)
sdc->init = pl022_init;
dc->reset = pl022_reset;
dc->vmsd = &vmstate_pl022;
}
static const TypeInfo pl022_info = {