|
@@ -1,5 +1,6 @@
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/osdep.h"
|
|
#include "hw/acpi/acpi_dev_interface.h"
|
|
#include "hw/acpi/acpi_dev_interface.h"
|
|
|
|
+#include "hw/acpi/acpi_aml_interface.h"
|
|
#include "qemu/module.h"
|
|
#include "qemu/module.h"
|
|
|
|
|
|
void acpi_send_event(DeviceState *dev, AcpiEventStatusBits event)
|
|
void acpi_send_event(DeviceState *dev, AcpiEventStatusBits event)
|
|
@@ -18,8 +19,15 @@ static void register_types(void)
|
|
.parent = TYPE_INTERFACE,
|
|
.parent = TYPE_INTERFACE,
|
|
.class_size = sizeof(AcpiDeviceIfClass),
|
|
.class_size = sizeof(AcpiDeviceIfClass),
|
|
};
|
|
};
|
|
|
|
+ static const TypeInfo acpi_dev_aml_if_info = {
|
|
|
|
+ .name = TYPE_ACPI_DEV_AML_IF,
|
|
|
|
+ .parent = TYPE_INTERFACE,
|
|
|
|
+ .class_size = sizeof(AcpiDevAmlIfClass),
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
|
|
type_register_static(&acpi_dev_if_info);
|
|
type_register_static(&acpi_dev_if_info);
|
|
|
|
+ type_register_static(&acpi_dev_aml_if_info);
|
|
}
|
|
}
|
|
|
|
|
|
type_init(register_types)
|
|
type_init(register_types)
|