Re: [XEN PATCH v2] xen: use parameter name 'mcs' in arch_do_multicall_call()

2023-07-26 Thread Stefano Stabellini
On Wed, 26 Jul 2023, Federico Serafini wrote: > Make function declaration and definition consistent using the same > parameter name ('mcs' do denote a pointer to an 'mc_state'). > This addresses a violation of MISRA C:2012 Rule 8.3: "All declarations > of an object or function shall use the same na

Re: [XEN PATCH v2] xen: use parameter name 'mcs' in arch_do_multicall_call()

2023-07-26 Thread Jan Beulich
On 26.07.2023 11:34, Federico Serafini wrote: > Make function declaration and definition consistent using the same > parameter name ('mcs' do denote a pointer to an 'mc_state'). > This addresses a violation of MISRA C:2012 Rule 8.3: "All declarations > of an object or function shall use the same na

[XEN PATCH v2] xen: use parameter name 'mcs' in arch_do_multicall_call()

2023-07-26 Thread Federico Serafini
Make function declaration and definition consistent using the same parameter name ('mcs' do denote a pointer to an 'mc_state'). This addresses a violation of MISRA C:2012 Rule 8.3: "All declarations of an object or function shall use the same names and type qualifiers". Signed-off-by: Federico Ser