mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43: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
|
@ -154,12 +154,19 @@ static DeviceInfo raven_info = {
|
|||
.class_init = raven_class_init,
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo raven_pcihost_info = {
|
||||
.qdev.name = "raven-pcihost",
|
||||
.qdev.fw_name = "pci",
|
||||
.qdev.size = sizeof(PREPPCIState),
|
||||
.qdev.no_user = 1,
|
||||
.init = raven_pcihost_init,
|
||||
static void raven_pcihost_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = raven_pcihost_init;
|
||||
}
|
||||
|
||||
static DeviceInfo raven_pcihost_info = {
|
||||
.name = "raven-pcihost",
|
||||
.fw_name = "pci",
|
||||
.size = sizeof(PREPPCIState),
|
||||
.class_init = raven_pcihost_class_init,
|
||||
.no_user = 1,
|
||||
};
|
||||
|
||||
static void raven_register_devices(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue