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/cris | |
parent | 7136fc1da2690a2a8a6444311484283de0190065 (diff) | |
download | qemu-4771d756f46219762477aaeaaef9bd215e3d5c60.tar.gz qemu-4771d756f46219762477aaeaaef9bd215e3d5c60.tar.bz2 qemu-4771d756f46219762477aaeaaef9bd215e3d5c60.zip |
hw: explicitly include qemu-common.h and cpu.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/cris')
-rw-r--r-- | hw/cris/axis_dev88.c | 2 | ||||
-rw-r--r-- | hw/cris/boot.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/hw/cris/axis_dev88.c b/hw/cris/axis_dev88.c index 8cfa082acd..9f58658741 100644 --- a/hw/cris/axis_dev88.c +++ b/hw/cris/axis_dev88.c @@ -24,6 +24,8 @@ #include "qemu/osdep.h" #include "qapi/error.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/sysbus.h" #include "net/net.h" #include "hw/block/flash.h" diff --git a/hw/cris/boot.c b/hw/cris/boot.c index 42485a4ca0..7d423ed92f 100644 --- a/hw/cris/boot.c +++ b/hw/cris/boot.c @@ -23,6 +23,8 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/hw.h" #include "hw/loader.h" #include "elf.h" |