[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [XEN PATCH 06/11] xen/notifier: address violations of MISRA C:2012 Rule 8.2
Add missing parameter names. No functional change. Signed-off-by: Federico Serafini <federico.serafini@xxxxxxxxxxx> --- xen/include/xen/notifier.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/include/xen/notifier.h b/xen/include/xen/notifier.h index 51453c1552..2a952484df 100644 --- a/xen/include/xen/notifier.h +++ b/xen/include/xen/notifier.h @@ -23,7 +23,8 @@ */ struct notifier_block { - int (*notifier_call)(struct notifier_block *, unsigned long, void *); + int (*notifier_call)(struct notifier_block *nfb, unsigned long action, + void *hcpu); struct list_head chain; int priority; }; -- 2.34.1
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |