diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-28 16:43:06 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-31 19:47:43 +0200 |
commit | 060bfdb75e3932fdd2bd3748a7f784d0d3f283b5 (patch) | |
tree | f0f07e00b1d4827be0e8175577996ad4ebac3fa7 | |
parent | 73c1970676b27bc8d2229adeb34b8e903c4b873c (diff) | |
download | qemu-060bfdb75e3932fdd2bd3748a7f784d0d3f283b5.zip qemu-060bfdb75e3932fdd2bd3748a7f784d0d3f283b5.tar.gz qemu-060bfdb75e3932fdd2bd3748a7f784d0d3f283b5.tar.bz2 |
target/mips: Remove unused headers in lcsr_helper.c
This files only access the address_space_ld/st API, declared
in "exec/cpu-all.h", already included by "cpu.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230828221314.18435-9-philmd@linaro.org>
-rw-r--r-- | target/mips/tcg/sysemu/lcsr_helper.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/mips/tcg/sysemu/lcsr_helper.c b/target/mips/tcg/sysemu/lcsr_helper.c index fb57bcb..25e0357 100644 --- a/target/mips/tcg/sysemu/lcsr_helper.c +++ b/target/mips/tcg/sysemu/lcsr_helper.c @@ -8,10 +8,7 @@ #include "qemu/osdep.h" #include "cpu.h" -#include "internal.h" -#include "qemu/host-utils.h" #include "exec/helper-proto.h" -#include "exec/exec-all.h" #define GET_MEMTXATTRS(cas) \ ((MemTxAttrs){.requester_id = env_cpu(cas)->cpu_index}) |