diff options
author | Markus Armbruster <armbru@redhat.com> | 2019-05-23 16:35:08 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-06-12 13:20:20 +0200 |
commit | a8d2532645cf5ce4f75981f81dfe363efc35d05c (patch) | |
tree | 9572944040e99117f69f46d6e99488e8073f65c3 /target/arm | |
parent | 0b8fa32f551e863bb548a11394239239270dd3dc (diff) |
Include qemu-common.h exactly where needed
No header includes qemu-common.h after this commit, as prescribed by
qemu-common.h's file comment.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190523143508.25387-5-armbru@redhat.com>
[Rebased with conflicts resolved automatically, except for
include/hw/arm/xlnx-zynqmp.h hw/arm/nrf51_soc.c hw/arm/msf2-soc.c
block/qcow2-refcount.c block/qcow2-cluster.c block/qcow2-cache.c
target/arm/cpu.h target/lm32/cpu.h target/m68k/cpu.h target/mips/cpu.h
target/moxie/cpu.h target/nios2/cpu.h target/openrisc/cpu.h
target/riscv/cpu.h target/tilegx/cpu.h target/tricore/cpu.h
target/unicore32/cpu.h target/xtensa/cpu.h; bsd-user/main.c and
net/tap-bsd.c fixed up]
Diffstat (limited to 'target/arm')
-rw-r--r-- | target/arm/arm-semi.c | 1 | ||||
-rw-r--r-- | target/arm/cpu.c | 1 | ||||
-rw-r--r-- | target/arm/cpu.h | 1 | ||||
-rw-r--r-- | target/arm/gdbstub.c | 1 | ||||
-rw-r--r-- | target/arm/gdbstub64.c | 1 | ||||
-rw-r--r-- | target/arm/kvm-stub.c | 1 | ||||
-rw-r--r-- | target/arm/machine.c | 1 |
7 files changed, 1 insertions, 6 deletions
diff --git a/target/arm/arm-semi.c b/target/arm/arm-semi.c index 07af8d35da..bca9a25910 100644 --- a/target/arm/arm-semi.c +++ b/target/arm/arm-semi.c @@ -34,7 +34,6 @@ #define ARM_ANGEL_HEAP_SIZE (128 * 1024 * 1024) #else -#include "qemu-common.h" #include "exec/gdbstub.h" #include "qemu/cutils.h" #endif diff --git a/target/arm/cpu.c b/target/arm/cpu.c index d0e144a4a1..4d5d46db7f 100644 --- a/target/arm/cpu.c +++ b/target/arm/cpu.c @@ -19,6 +19,7 @@ */ #include "qemu/osdep.h" +#include "qemu-common.h" #include "target/arm/idau.h" #include "qemu/module.h" #include "qapi/error.h" diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 8fa9772c9d..06ddc49eb6 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -22,7 +22,6 @@ #include "kvm-consts.h" #include "hw/registerfields.h" -#include "qemu-common.h" #include "cpu-qom.h" #include "exec/cpu-defs.h" diff --git a/target/arm/gdbstub.c b/target/arm/gdbstub.c index 0c64c0292e..1239abd984 100644 --- a/target/arm/gdbstub.c +++ b/target/arm/gdbstub.c @@ -18,7 +18,6 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ #include "qemu/osdep.h" -#include "qemu-common.h" #include "cpu.h" #include "exec/gdbstub.h" diff --git a/target/arm/gdbstub64.c b/target/arm/gdbstub64.c index 49bc3fc521..665ebb3ef6 100644 --- a/target/arm/gdbstub64.c +++ b/target/arm/gdbstub64.c @@ -17,7 +17,6 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ #include "qemu/osdep.h" -#include "qemu-common.h" #include "cpu.h" #include "exec/gdbstub.h" diff --git a/target/arm/kvm-stub.c b/target/arm/kvm-stub.c index b2c66df532..56a7099e6b 100644 --- a/target/arm/kvm-stub.c +++ b/target/arm/kvm-stub.c @@ -10,7 +10,6 @@ * */ #include "qemu/osdep.h" -#include "qemu-common.h" #include "cpu.h" #include "kvm_arm.h" diff --git a/target/arm/machine.c b/target/arm/machine.c index 96d032f2a7..3fd319a309 100644 --- a/target/arm/machine.c +++ b/target/arm/machine.c @@ -1,5 +1,4 @@ #include "qemu/osdep.h" -#include "qemu-common.h" #include "cpu.h" #include "hw/hw.h" #include "hw/boards.h" |