From b9905a04e450ced594e7bcc6d9fe843b204b4c78 Mon Sep 17 00:00:00 2001 From: Federico Serafini Date: Wed, 13 Dec 2023 10:38:19 +0100 Subject: [PATCH] xen/compat: address violations of MISRA C:2012 Rule 8.2 Add missing parameter names. No functional change. Signed-off-by: Federico Serafini Reviewed-by: Stefano Stabellini --- xen/include/xen/compat.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xen/include/xen/compat.h b/xen/include/xen/compat.h index 41a5d61eef..7ec9d6567e 100644 --- a/xen/include/xen/compat.h +++ b/xen/include/xen/compat.h @@ -232,9 +232,10 @@ int hypercall_xlat_continuation(unsigned int *id, unsigned int nr, /* In-place translation functons: */ struct start_info; -void xlat_start_info(struct start_info *, enum XLAT_start_info_console); +void xlat_start_info(struct start_info *native, + enum XLAT_start_info_console console); struct vcpu_runstate_info; -void xlat_vcpu_runstate_info(struct vcpu_runstate_info *); +void xlat_vcpu_runstate_info(struct vcpu_runstate_info *native); #else -- 2.39.5