diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-01-19 21:51:44 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-03-22 22:20:17 +0100 |
commit | 4771d756f46219762477aaeaaef9bd215e3d5c60 (patch) | |
tree | 470c23c5b9a510b0d5a93cc7c4c18a9d47a29dd5 /hw/alpha | |
parent | 7136fc1da2690a2a8a6444311484283de0190065 (diff) |
hw: explicitly include qemu-common.h and cpu.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/alpha')
-rw-r--r-- | hw/alpha/dp264.c | 2 | ||||
-rw-r--r-- | hw/alpha/pci.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/hw/alpha/dp264.c b/hw/alpha/dp264.c index 7c5989bdc7..1eee68b748 100644 --- a/hw/alpha/dp264.c +++ b/hw/alpha/dp264.c @@ -7,6 +7,8 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/hw.h" #include "elf.h" #include "hw/loader.h" diff --git a/hw/alpha/pci.c b/hw/alpha/pci.c index fb902bb92d..5baa0eaf15 100644 --- a/hw/alpha/pci.c +++ b/hw/alpha/pci.c @@ -7,6 +7,8 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "alpha_sys.h" #include "qemu/log.h" #include "sysemu/sysemu.h" |