diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-01-19 21:51:44 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:52:21 -0600 |
commit | 69fea71f6bf8a4966c4dc7d0a05a0c85671098f3 (patch) | |
tree | e392c765fcca02c34ddeb1afc03655aecf704a28 /hw/lm32 | |
parent | 228d57eaade5e1f4a7c081c393bb18063aa71a8d (diff) | |
download | hqemu-69fea71f6bf8a4966c4dc7d0a05a0c85671098f3.zip hqemu-69fea71f6bf8a4966c4dc7d0a05a0c85671098f3.tar.gz |
hw: explicitly include qemu-common.h and cpu.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/lm32')
-rw-r--r-- | hw/lm32/lm32_boards.c | 2 | ||||
-rw-r--r-- | hw/lm32/milkymist.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/hw/lm32/lm32_boards.c b/hw/lm32/lm32_boards.c index 5b61b76..c029056 100644 --- a/hw/lm32/lm32_boards.c +++ b/hw/lm32/lm32_boards.c @@ -18,6 +18,8 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/sysbus.h" #include "hw/hw.h" #include "hw/block/flash.h" diff --git a/hw/lm32/milkymist.c b/hw/lm32/milkymist.c index f71492e..2216900 100644 --- a/hw/lm32/milkymist.c +++ b/hw/lm32/milkymist.c @@ -18,6 +18,8 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/sysbus.h" #include "hw/hw.h" #include "hw/block/flash.h" |