diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-12-05 18:35:12 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-12-13 19:58:54 +0100 |
| commit | 5777c8a905d5aa35d5308a6785c9d9b60cd498cc (patch) | |
| tree | 0f894d385daa7b5039eea6503483e357eba168c6 | |
| parent | 55671f80cbb011343cf5786186daed600fcfab4f (diff) | |
| download | focaccia-qemu-5777c8a905d5aa35d5308a6785c9d9b60cd498cc.tar.gz focaccia-qemu-5777c8a905d5aa35d5308a6785c9d9b60cd498cc.zip | |
target/mips: Remove unused headers from cp0_helper.c
Remove unused headers and add missing "qemu/log.h" since qemu_log() is called. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20201206233949.3783184-5-f4bug@amsat.org>
| -rw-r--r-- | target/mips/cp0_helper.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target/mips/cp0_helper.c b/target/mips/cp0_helper.c index caaaefcc8a..cb899fe3d7 100644 --- a/target/mips/cp0_helper.c +++ b/target/mips/cp0_helper.c @@ -21,15 +21,13 @@ */ #include "qemu/osdep.h" +#include "qemu/log.h" #include "qemu/main-loop.h" #include "cpu.h" #include "internal.h" #include "qemu/host-utils.h" #include "exec/helper-proto.h" #include "exec/exec-all.h" -#include "exec/cpu_ldst.h" -#include "exec/memop.h" -#include "sysemu/kvm.h" /* SMP helpers. */ |