From 187aad2896a3775941a9a02ce8d8a4a15970c1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Fri, 4 Apr 2025 16:40:31 +0200 Subject: [PATCH] hw/arm/xen-pvh: Remove unnecessary 'hw/xen/arch_hvm.h' header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "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é Reviewed-by: Xiaoyao Li Reviewed-by: Manos Pitsidianakis Message-Id: <20250715071528.46196-1-philmd@linaro.org> --- hw/arm/xen-pvh.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/arm/xen-pvh.c b/hw/arm/xen-pvh.c index 4b26bcff7a..1a9eeb01c8 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")