diff options
author | Anton Johansson <anjo@rev.ng> | 2024-01-19 15:39:57 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-01-29 07:06:03 +1000 |
commit | 61d6a915132db4616f601d5144fdac45f429a4cd (patch) | |
tree | 5c172c054e27ea78dde1f7776fb4fd922ad02ca4 | |
parent | c4b3f46c15153308054703c7b0053f2bad26242d (diff) | |
download | qemu-61d6a915132db4616f601d5144fdac45f429a4cd.zip qemu-61d6a915132db4616f601d5144fdac45f429a4cd.tar.gz qemu-61d6a915132db4616f601d5144fdac45f429a4cd.tar.bz2 |
hw/core: Include vaddr.h from cpu.h
cpu-common.h is only needed for vaddr
Signed-off-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20240119144024.14289-8-anjo@rev.ng>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | include/hw/core/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 238c02c..db58f12 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -22,8 +22,8 @@ #include "hw/qdev-core.h" #include "disas/dis-asm.h" -#include "exec/cpu-common.h" #include "exec/hwaddr.h" +#include "exec/vaddr.h" #include "exec/memattrs.h" #include "exec/tlb-common.h" #include "qapi/qapi-types-run-state.h" |