diff options
author | Wei Liu <liuwe@linux.microsoft.com> | 2025-03-07 11:55:20 -0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-04-17 18:23:26 +0200 |
commit | 3667f0bb58427edadc4a049080141d395b48fc29 (patch) | |
tree | ecc123882d656f3c3dcc6981a51cd9bf13bb02c9 | |
parent | 7517ee9ec23801d4b6c4e5acbc0ad1bfa06c755a (diff) | |
download | qemu-3667f0bb58427edadc4a049080141d395b48fc29.zip qemu-3667f0bb58427edadc4a049080141d395b48fc29.tar.gz qemu-3667f0bb58427edadc4a049080141d395b48fc29.tar.bz2 |
target/i386/hvf: drop unused headers
Signed-off-by: Wei Liu <liuwe@linux.microsoft.com>
Link: https://lore.kernel.org/r/1741377325-28175-10-git-send-email-liuwe@linux.microsoft.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | target/i386/hvf/x86_decode.c | 3 | ||||
-rw-r--r-- | target/i386/hvf/x86_emu.c | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/target/i386/hvf/x86_decode.c b/target/i386/hvf/x86_decode.c index 728e159..ddd7b60 100644 --- a/target/i386/hvf/x86_decode.c +++ b/target/i386/hvf/x86_decode.c @@ -20,10 +20,7 @@ #include "panic.h" #include "x86_decode.h" -#include "vmx.h" #include "x86_emu.h" -#include "x86_mmu.h" -#include "x86_descr.h" #define OPCODE_ESCAPE 0xf diff --git a/target/i386/hvf/x86_emu.c b/target/i386/hvf/x86_emu.c index aec7a8a..26a4876 100644 --- a/target/i386/hvf/x86_emu.c +++ b/target/i386/hvf/x86_emu.c @@ -40,11 +40,7 @@ #include "x86_decode.h" #include "x86.h" #include "x86_emu.h" -#include "x86_mmu.h" #include "x86_flags.h" -#include "vmcs.h" -#include "vmx.h" -#include "hvf-i386.h" #define EXEC_2OP_FLAGS_CMD(env, decode, cmd, FLAGS_FUNC, save_res) \ { \ |