From f8af00d1a6abe46dca31c197d30cb5118d54cd54 Mon Sep 17 00:00:00 2001 From: Xenia Ragiadakou Date: Wed, 22 Jun 2022 18:15:12 +0300 Subject: [PATCH] xen/arm: shutdown: Fix MISRA C 2012 Rule 8.4 violation Include header so that the declarations of the functions machine_halt() and machine_restart(), which have external linkage, are visible before the function definitions. Signed-off-by: Xenia Ragiadakou Reviewed-by: Bertrand Marquis --- xen/arch/arm/shutdown.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/arch/arm/shutdown.c b/xen/arch/arm/shutdown.c index 3dc6819d56..5550f50f61 100644 --- a/xen/arch/arm/shutdown.c +++ b/xen/arch/arm/shutdown.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include -- 2.30.2