mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
sysbus: apic: ioapic: convert to QEMU Object Model
This converts three devices because apic and ioapic are subclasses of sysbus. Converting subclasses independently of their base class is prohibitively hard. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
40021f0888
commit
999e12bbe8
131 changed files with 2734 additions and 1297 deletions
21
hw/pl190.c
21
hw/pl190.c
|
@ -255,13 +255,20 @@ static const VMStateDescription vmstate_pl190 = {
|
|||
}
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo pl190_info = {
|
||||
.init = pl190_init,
|
||||
.qdev.name = "pl190",
|
||||
.qdev.size = sizeof(pl190_state),
|
||||
.qdev.vmsd = &vmstate_pl190,
|
||||
.qdev.reset = pl190_reset,
|
||||
.qdev.no_user = 1,
|
||||
static void pl190_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = pl190_init;
|
||||
}
|
||||
|
||||
static DeviceInfo pl190_info = {
|
||||
.name = "pl190",
|
||||
.size = sizeof(pl190_state),
|
||||
.vmsd = &vmstate_pl190,
|
||||
.reset = pl190_reset,
|
||||
.no_user = 1,
|
||||
.class_init = pl190_class_init,
|
||||
};
|
||||
|
||||
static void pl190_register_devices(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue