b6a0aa0537
Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1453832250-766-11-git-send-email-peter.maydell@linaro.org
17 lines
390 B
C
17 lines
390 B
C
#include "qemu/osdep.h"
|
|
#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)
|