diff options
author | Philippe Mathieu-Daudé | 2021-03-05 14:54:49 +0100 |
---|---|---|
committer | Alex Bennée | 2021-03-10 16:34:12 +0100 |
commit | 6b5fe13786f2e06fce4ceb5f871dd239917105c6 (patch) | |
tree | b66b910d7e2f7b70ffc18742f60013b60fd4ca78 /target/arm/translate.c | |
parent | tests/avocado: add boot_xen tests (diff) | |
download | qemu-6b5fe13786f2e06fce4ceb5f871dd239917105c6.tar.gz qemu-6b5fe13786f2e06fce4ceb5f871dd239917105c6.tar.xz qemu-6b5fe13786f2e06fce4ceb5f871dd239917105c6.zip |
semihosting: Move include/hw/semihosting/ -> include/semihosting/
We want to move the semihosting code out of hw/ in the next patch.
This patch contains the mechanical steps, created using:
$ git mv include/hw/semihosting/ include/
$ sed -i s,hw/semihosting,semihosting, $(git grep -l hw/semihosting)
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210226131356.3964782-2-f4bug@amsat.org>
Message-Id: <20210305135451.15427-2-alex.bennee@linaro.org>
Diffstat (limited to 'target/arm/translate.c')
-rw-r--r-- | target/arm/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/translate.c b/target/arm/translate.c index 1653cca1aa..62b1c2081b 100644 --- a/target/arm/translate.c +++ b/target/arm/translate.c @@ -29,7 +29,7 @@ #include "qemu/log.h" #include "qemu/bitops.h" #include "arm_ldst.h" -#include "hw/semihosting/semihost.h" +#include "semihosting/semihost.h" #include "exec/helper-proto.h" #include "exec/helper-gen.h" |