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
|
@ -566,12 +566,19 @@ static DeviceInfo i440fx_info = {
|
|||
.class_init = i440fx_class_init,
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo i440fx_pcihost_info = {
|
||||
.init = i440fx_pcihost_initfn,
|
||||
.qdev.name = "i440FX-pcihost",
|
||||
.qdev.fw_name = "pci",
|
||||
.qdev.size = sizeof(I440FXState),
|
||||
.qdev.no_user = 1,
|
||||
static void i440fx_pcihost_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = i440fx_pcihost_initfn;
|
||||
}
|
||||
|
||||
static DeviceInfo i440fx_pcihost_info = {
|
||||
.name = "i440FX-pcihost",
|
||||
.fw_name = "pci",
|
||||
.size = sizeof(I440FXState),
|
||||
.no_user = 1,
|
||||
.class_init = i440fx_pcihost_class_init,
|
||||
};
|
||||
|
||||
static void i440fx_register(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue