mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -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
|
@ -206,12 +206,19 @@ static int sun4c_intctl_init1(SysBusDevice *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static SysBusDeviceInfo sun4c_intctl_info = {
|
||||
.init = sun4c_intctl_init1,
|
||||
.qdev.name = "sun4c_intctl",
|
||||
.qdev.size = sizeof(Sun4c_INTCTLState),
|
||||
.qdev.vmsd = &vmstate_sun4c_intctl,
|
||||
.qdev.reset = sun4c_intctl_reset,
|
||||
static void sun4c_intctl_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = sun4c_intctl_init1;
|
||||
}
|
||||
|
||||
static DeviceInfo sun4c_intctl_info = {
|
||||
.name = "sun4c_intctl",
|
||||
.size = sizeof(Sun4c_INTCTLState),
|
||||
.vmsd = &vmstate_sun4c_intctl,
|
||||
.reset = sun4c_intctl_reset,
|
||||
.class_init = sun4c_intctl_class_init,
|
||||
};
|
||||
|
||||
static void sun4c_intctl_register_devices(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue