diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-19 11:13:48 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-27 09:37:30 +0100 |
commit | b6718da464fc39f666635c7b240211395641502d (patch) | |
tree | 723abd93a293664f46e03fdb5405c9f8eae294d9 | |
parent | 7156e82f4a4e1928aad5b6df71319ba3f67af0c3 (diff) | |
download | qemu-b6718da464fc39f666635c7b240211395641502d.zip qemu-b6718da464fc39f666635c7b240211395641502d.tar.gz qemu-b6718da464fc39f666635c7b240211395641502d.tar.bz2 |
hw/i386/q35: Include missing 'hw/acpi/acpi.h' header
"hw/acpi/acpi.h" is implicitly included. Include it
explicitly to avoid the following error when refactoring
headers:
hw/i386/pc_q35.c:209:43: error: use of undeclared identifier 'ACPI_PM_PROP_ACPI_PCIHP_BRIDGE'
ACPI_PM_PROP_ACPI_PCIHP_BRIDGE,
^
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Message-Id: <20240226090600.31952-3-philmd@linaro.org>
-rw-r--r-- | hw/i386/pc_q35.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index c89ff63..3c80f37 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -30,6 +30,7 @@ #include "qemu/osdep.h" #include "qemu/units.h" +#include "hw/acpi/acpi.h" #include "hw/char/parallel-isa.h" #include "hw/loader.h" #include "hw/i2c/smbus_eeprom.h" |