Igor Mammedov | 521b367 | 2014-06-16 19:12:26 +0200 | [diff] [blame] | 1 | #include "hw/acpi/acpi_dev_interface.h" |
2 | #include "qemu/module.h" | ||||
3 | |||||
4 | static void register_types(void) | ||||
5 | { | ||||
6 | static const TypeInfo acpi_dev_if_info = { | ||||
7 | .name = TYPE_ACPI_DEVICE_IF, | ||||
8 | .parent = TYPE_INTERFACE, | ||||
9 | .class_size = sizeof(AcpiDeviceIfClass), | ||||
10 | }; | ||||
11 | |||||
12 | type_register_static(&acpi_dev_if_info); | ||||
13 | } | ||||
14 | |||||
15 | type_init(register_types) |