From: Federico Serafini Date: Mon, 20 Nov 2023 09:54:15 +0000 (+0100) Subject: x86/platform_hypercall: address violations of MISRA C:2012 Rule 8.2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=05644bd9d2eb98c43b64e44525a52e96df14a081;p=people%2Fandrewcoop%2Fxen.git x86/platform_hypercall: address violations of MISRA C:2012 Rule 8.2 Add missing parameter names. No functional change. Signed-off-by: Federico Serafini Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/platform_hypercall.c b/xen/arch/x86/platform_hypercall.c index 9469de9045..c1ab552c57 100644 --- a/xen/arch/x86/platform_hypercall.c +++ b/xen/arch/x86/platform_hypercall.c @@ -46,9 +46,9 @@ struct resource_access { xenpf_resource_entry_t *entries; }; -long cf_check cpu_frequency_change_helper(void *); -void check_resource_access(struct resource_access *); -void cf_check resource_access(void *); +long cf_check cpu_frequency_change_helper(void *data); +void check_resource_access(struct resource_access *ra); +void cf_check resource_access(void *info); #ifndef COMPAT typedef long ret_t;