diff options
author | Anthony Liguori | 2012-01-24 20:12:29 +0100 |
---|---|---|
committer | Anthony Liguori | 2012-01-27 17:50:50 +0100 |
commit | 999e12bbe85c5dcf49bef13bce4f97399c7105f4 (patch) | |
tree | 73b6ed8633a73134e9f728baa1ed2b1dab58b5b0 /hw/sbi.c | |
parent | pci: convert to QEMU Object Model (diff) | |
download | qemu-999e12bbe85c5dcf49bef13bce4f97399c7105f4.tar.gz qemu-999e12bbe85c5dcf49bef13bce4f97399c7105f4.tar.xz qemu-999e12bbe85c5dcf49bef13bce4f97399c7105f4.zip |
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>
Diffstat (limited to 'hw/sbi.c')
-rw-r--r-- | hw/sbi.c | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -131,12 +131,19 @@ static int sbi_init1(SysBusDevice *dev) return 0; } -static SysBusDeviceInfo sbi_info = { - .init = sbi_init1, - .qdev.name = "sbi", - .qdev.size = sizeof(SBIState), - .qdev.vmsd = &vmstate_sbi, - .qdev.reset = sbi_reset, +static void sbi_class_init(ObjectClass *klass, void *data) +{ + SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); + + k->init = sbi_init1; +} + +static DeviceInfo sbi_info = { + .name = "sbi", + .size = sizeof(SBIState), + .vmsd = &vmstate_sbi, + .reset = sbi_reset, + .class_init = sbi_class_init, }; static void sbi_register_devices(void) |