From beb116954b9b7f3bb56412b2494b562f02b864b1 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Tue, 7 Jan 1997 02:33:00 +0000 Subject: Import of Linux/MIPS 2.1.14 --- include/linux/notifier.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/linux/notifier.h') diff --git a/include/linux/notifier.h b/include/linux/notifier.h index 78a446496..b3c9ccf65 100644 --- a/include/linux/notifier.h +++ b/include/linux/notifier.h @@ -13,7 +13,7 @@ struct notifier_block { - int (*notifier_call)(unsigned long, void *); + int (*notifier_call)(struct notifier_block *this, unsigned long, void *); struct notifier_block *next; int priority; }; @@ -68,7 +68,7 @@ extern __inline__ int notifier_call_chain(struct notifier_block **n, unsigned lo struct notifier_block *nb = *n; while(nb) { - ret=nb->notifier_call(val,v); + ret=nb->notifier_call(nb,val,v); if(ret&NOTIFY_STOP_MASK) return ret; nb=nb->next; -- cgit v1.2.3