diff options
author | Markus Armbruster | 2019-05-23 16:35:08 +0200 |
---|---|---|
committer | Markus Armbruster | 2019-06-12 13:20:20 +0200 |
commit | a8d2532645cf5ce4f75981f81dfe363efc35d05c (patch) | |
tree | 9572944040e99117f69f46d6e99488e8073f65c3 /disas | |
parent | Include qemu/module.h where needed, drop it from qemu-common.h (diff) | |
download | qemu-a8d2532645cf5ce4f75981f81dfe363efc35d05c.tar.gz qemu-a8d2532645cf5ce4f75981f81dfe363efc35d05c.tar.xz qemu-a8d2532645cf5ce4f75981f81dfe363efc35d05c.zip |
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 'disas')
-rw-r--r-- | disas/cris.c | 1 | ||||
-rw-r--r-- | disas/i386.c | 1 | ||||
-rw-r--r-- | disas/s390.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/disas/cris.c b/disas/cris.c index bf9eafc415..2f43c9b209 100644 --- a/disas/cris.c +++ b/disas/cris.c @@ -19,7 +19,6 @@ along with this program; if not, see <http://www.gnu.org/licenses/>. */ #include "qemu/osdep.h" -#include "qemu-common.h" #include "disas/dis-asm.h" #include "target/cris/opcode-cris.h" diff --git a/disas/i386.c b/disas/i386.c index 4c1f0f877b..06c835236e 100644 --- a/disas/i386.c +++ b/disas/i386.c @@ -153,7 +153,6 @@ #define MAX_REG_NAME_SIZE 8 /* opcodes/i386-dis.c r1.126 */ -#include "qemu-common.h" static int fetch_data2(struct disassemble_info *, bfd_byte *); static int fetch_data(struct disassemble_info *, bfd_byte *); diff --git a/disas/s390.c b/disas/s390.c index b1f4e2a0c1..a9ec8fa593 100644 --- a/disas/s390.c +++ b/disas/s390.c @@ -21,7 +21,6 @@ 02110-1301, USA. */ #include "qemu/osdep.h" -#include "qemu-common.h" #include "disas/dis-asm.h" /* include/opcode/s390.h revision 1.9 */ |