|
@@ -36,6 +36,7 @@
|
|
#include "qemu/module.h"
|
|
#include "qemu/module.h"
|
|
#include "qemu/range.h"
|
|
#include "qemu/range.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/error.h"
|
|
|
|
+#include "hw/acpi/acpi_aml_interface.h"
|
|
|
|
|
|
/* PCI bridge subsystem vendor ID helper functions */
|
|
/* PCI bridge subsystem vendor ID helper functions */
|
|
#define PCI_SSVID_SIZEOF 8
|
|
#define PCI_SSVID_SIZEOF 8
|
|
@@ -472,6 +473,10 @@ static const TypeInfo pci_bridge_type_info = {
|
|
.parent = TYPE_PCI_DEVICE,
|
|
.parent = TYPE_PCI_DEVICE,
|
|
.instance_size = sizeof(PCIBridge),
|
|
.instance_size = sizeof(PCIBridge),
|
|
.abstract = true,
|
|
.abstract = true,
|
|
|
|
+ .interfaces = (InterfaceInfo[]) {
|
|
|
|
+ { TYPE_ACPI_DEV_AML_IF },
|
|
|
|
+ { },
|
|
|
|
+ },
|
|
};
|
|
};
|
|
|
|
|
|
static void pci_bridge_register_types(void)
|
|
static void pci_bridge_register_types(void)
|