diff options
Diffstat (limited to 'hw/apic.c')
| -rw-r--r-- | hw/apic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/apic.c b/hw/apic.c index 086c544bf3..ff9d24e914 100644 --- a/hw/apic.c +++ b/hw/apic.c @@ -781,9 +781,9 @@ static TypeInfo apic_info = { .class_init = apic_class_init, }; -static void apic_register_devices(void) +static void apic_register_types(void) { type_register_static(&apic_info); } -device_init(apic_register_devices) +type_init(apic_register_types) |