diff options
author | Paolo Bonzini | 2019-12-12 17:15:43 +0100 |
---|---|---|
committer | Paolo Bonzini | 2019-12-17 19:33:49 +0100 |
commit | 852c27e2ba99939e13a8e87f0d1a43aaec805f56 (patch) | |
tree | 9d55fd3c7eff15b99b3497447b1b8de1f0a39ca8 /hw/alpha | |
parent | fw_cfg: allow building without other devices (diff) | |
download | qemu-852c27e2ba99939e13a8e87f0d1a43aaec805f56.tar.gz qemu-852c27e2ba99939e13a8e87f0d1a43aaec805f56.tar.xz qemu-852c27e2ba99939e13a8e87f0d1a43aaec805f56.zip |
hw: replace hw/i386/pc.h with a header just for the i8259
Remove the need to include i386/pc.h to get to the i8259 functions.
This is enough to remove the inclusion of hw/i386/pc.h from all non-x86
files.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/alpha')
-rw-r--r-- | hw/alpha/alpha_sys.h | 3 | ||||
-rw-r--r-- | hw/alpha/dp264.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/hw/alpha/alpha_sys.h b/hw/alpha/alpha_sys.h index 4e127a6de8..95033d7f0b 100644 --- a/hw/alpha/alpha_sys.h +++ b/hw/alpha/alpha_sys.h @@ -7,7 +7,8 @@ #include "hw/pci/pci.h" #include "hw/pci/pci_host.h" #include "hw/ide.h" -#include "hw/i386/pc.h" +#include "hw/boards.h" +#include "hw/intc/i8259.h" PCIBus *typhoon_init(ram_addr_t, ISABus **, qemu_irq *, AlphaCPU *[4], diff --git a/hw/alpha/dp264.c b/hw/alpha/dp264.c index 51b3cf7a61..f2026fda6d 100644 --- a/hw/alpha/dp264.c +++ b/hw/alpha/dp264.c @@ -19,6 +19,7 @@ #include "hw/timer/i8254.h" #include "hw/isa/superio.h" #include "hw/dma/i8257.h" +#include "net/net.h" #include "qemu/cutils.h" #define MAX_IDE_BUS 2 |