diff options
author | Igor Mammedov <imammedo@redhat.com> | 2022-06-08 09:53:40 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-06-09 19:32:49 -0400 |
commit | 92344e76b867883a023b2b51123a1ca58c5bb714 (patch) | |
tree | 573410fe427830a732b22de503251b542a3e7be5 | |
parent | f3115cdd9cb8cb6ffba5b9d3e37f096724c77099 (diff) | |
download | qemu-92344e76b867883a023b2b51123a1ca58c5bb714.zip qemu-92344e76b867883a023b2b51123a1ca58c5bb714.tar.gz qemu-92344e76b867883a023b2b51123a1ca58c5bb714.tar.bz2 |
x86: acpi-build: do not include hw/isa/isa.h directly
the last remaining dependency on ISA in acpi-build.c
is iapc_boot_arch_8042() which pulls in in isa.h
in its own header hw/input/i8042.h. Clean up
not longer needed direct inclusion of isa.h in
acpi-build.c
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20220608135340.3304695-36-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r-- | hw/i386/acpi-build.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index 0b65fc9..f41e14a 100644 --- a/hw/i386/acpi-build.c +++ b/hw/i386/acpi-build.c @@ -37,7 +37,6 @@ #include "hw/acpi/cpu.h" #include "hw/nvram/fw_cfg.h" #include "hw/acpi/bios-linker-loader.h" -#include "hw/isa/isa.h" #include "hw/acpi/acpi_aml_interface.h" #include "hw/input/i8042.h" #include "hw/acpi/memory_hotplug.h" |