Add missing parameter names. No functional change.
Signed-off-by: Federico Serafini <[email protected]>
---
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