diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-09-16 15:33:32 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:51:20 -0700 |
commit | ad7379d49458a863c520a73a3c36441c572f850e (patch) | |
tree | 64c9c28a5b699e8be2cb84ef97c3c827ea118b39 /net/core/dev.c | |
parent | 22dd74950172dc8979576e2bef3b439f20ef0b05 (diff) | |
download | linux-ad7379d49458a863c520a73a3c36441c572f850e.tar.gz linux-ad7379d49458a863c520a73a3c36441c572f850e.tar.bz2 linux-ad7379d49458a863c520a73a3c36441c572f850e.zip |
[NET]: Fix the prototype of call_netdevice_notifiers.
This replaces the void * parameter with a struct net_device * which
is what is actually required.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index e9a6d93a194f..b517d36e653e 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -1206,9 +1206,9 @@ int unregister_netdevice_notifier(struct notifier_block *nb) * are as for raw_notifier_call_chain(). */ -int call_netdevice_notifiers(unsigned long val, void *v) +int call_netdevice_notifiers(unsigned long val, struct net_device *dev) { - return raw_notifier_call_chain(&netdev_chain, val, v); + return raw_notifier_call_chain(&netdev_chain, val, dev); } /* When > 0 there are consumers of rx skb time stamps */ |