2016-01-26 21:17:03 +03:00
|
|
|
#include "qemu/osdep.h"
|
2014-06-16 21:12:26 +04:00
|
|
|
#include "hw/acpi/acpi_dev_interface.h"
|
|
|
|
#include "qemu/module.h"
|
|
|
|
|
|
|
|
static void register_types(void)
|
|
|
|
{
|
|
|
|
static const TypeInfo acpi_dev_if_info = {
|
|
|
|
.name = TYPE_ACPI_DEVICE_IF,
|
|
|
|
.parent = TYPE_INTERFACE,
|
|
|
|
.class_size = sizeof(AcpiDeviceIfClass),
|
|
|
|
};
|
|
|
|
|
|
|
|
type_register_static(&acpi_dev_if_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types)
|