diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-04 16:40:31 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-15 19:12:18 +0200 |
commit | 187aad2896a3775941a9a02ce8d8a4a15970c1e6 (patch) | |
tree | c802bfdd5bacabb8606fd25696b1f2ee7914b2b1 | |
parent | 62b8cc1ecb376f39df67590f8c82914b923a6f15 (diff) | |
download | qemu-187aad2896a3775941a9a02ce8d8a4a15970c1e6.zip qemu-187aad2896a3775941a9a02ce8d8a4a15970c1e6.tar.gz qemu-187aad2896a3775941a9a02ce8d8a4a15970c1e6.tar.bz2 |
hw/arm/xen-pvh: Remove unnecessary 'hw/xen/arch_hvm.h' header
"hw/xen/arch_hvm.h" only declares the arch_handle_ioreq() and
arch_xen_set_memory() prototypes, which are not used by xen-pvh.c.
Remove the unnecessary header inclusion.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com>
Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Message-Id: <20250715071528.46196-1-philmd@linaro.org>
-rw-r--r-- | hw/arm/xen-pvh.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/arm/xen-pvh.c b/hw/arm/xen-pvh.c index 4b26bcf..1a9eeb0 100644 --- a/hw/arm/xen-pvh.c +++ b/hw/arm/xen-pvh.c @@ -10,7 +10,6 @@ #include "hw/boards.h" #include "system/system.h" #include "hw/xen/xen-pvh-common.h" -#include "hw/xen/arch_hvm.h" #define TYPE_XEN_ARM MACHINE_TYPE_NAME("xenpvh") |