Message ID | d362ef56c8c31bcca47d71a430879f087d9a9d04.1690474136.git.federico.serafini@bugseng.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [XEN] xen/notifier: address violations of MISRA C:2012 Rule 8.3 | expand |
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.serafini@bugseng.com> Reviewed-by: Stefano Stabellini <sstabellini@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 >
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,
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.serafini@bugseng.com> --- xen/include/xen/notifier.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)