On Thu, 27 Jul 2023, Federico Serafini wrote:
> Change parameter names in function declarations to be consistent with
> the corresponding definitions. This addesses violations of MISRA C:2012
> Rule 8.3: "All declarations of an object or function shall use the same
> names and type qualifiers".
> 
> No functional changes.
> 
> Signed-off-by: Federico Serafini <federico.seraf...@bugseng.com>

Reviewed-by: Stefano Stabellini <sstabell...@kernel.org>


> ---
>  xen/include/xen/notifier.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/xen/include/xen/notifier.h b/xen/include/xen/notifier.h
> index 3d6017d4f7..51453c1552 100644
> --- a/xen/include/xen/notifier.h
> +++ b/xen/include/xen/notifier.h
> @@ -37,9 +37,9 @@ struct notifier_head {
>  
>  
>  void notifier_chain_register(
> -    struct notifier_head *nh, struct notifier_block *nb);
> +    struct notifier_head *nh, struct notifier_block *n);
>  void notifier_chain_unregister(
> -    struct notifier_head *nh, struct notifier_block *nb);
> +    struct notifier_head *nh, struct notifier_block *n);
>  
>  int notifier_call_chain(
>      struct notifier_head *nh, unsigned long val, void *v,
> -- 
> 2.34.1
> 

Reply via email to