Commit af151d50eac24 added dependency on hw/i386/acpi-build.c (where this function is defined) to hw/pci-host/gpex-acpi. But acpi-build.c is only built when ACPI_PCI is enabled, and the build fails at link time if it is not. So ACPI_PCI becomes a hard dependency of PCI_EXPRESS_GENERIC_BRIDGE. Fix it.
Fixes: af151d50eac24 "hw/pci-host/gpex-acpi: Use build_pci_host_bridge_osc_method" Signed-off-by: Michael Tokarev <m...@tls.msk.ru> --- hw/pci-host/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci-host/Kconfig b/hw/pci-host/Kconfig index 9824fa188d..19b6605c7f 100644 --- a/hw/pci-host/Kconfig +++ b/hw/pci-host/Kconfig @@ -54,7 +54,7 @@ config PCI_EXPRESS_Q35 config PCI_EXPRESS_GENERIC_BRIDGE bool select PCI_EXPRESS - imply ACPI_PCI + select ACPI_PCI config PCI_EXPRESS_XILINX bool -- 2.47.2