These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / hw / acpi / acpi_interface.c
1 #include "qemu/osdep.h"
2 #include "hw/acpi/acpi_dev_interface.h"
3 #include "qemu/module.h"
4
5 static void register_types(void)
6 {
7     static const TypeInfo acpi_dev_if_info = {
8         .name          = TYPE_ACPI_DEVICE_IF,
9         .parent        = TYPE_INTERFACE,
10         .class_size = sizeof(AcpiDeviceIfClass),
11     };
12
13     type_register_static(&acpi_dev_if_info);
14 }
15
16 type_init(register_types)