aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2007-09-16 15:33:32 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:51:20 -0700
commitad7379d49458a863c520a73a3c36441c572f850e (patch)
tree64c9c28a5b699e8be2cb84ef97c3c827ea118b39 /include/linux
parent[NET]: migrate HARD_TX_LOCK to header file (diff)
downloadlinux-dev-ad7379d49458a863c520a73a3c36441c572f850e.tar.xz
linux-dev-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 'include/linux')
-rw-r--r--include/linux/netdevice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 96964fb7478b..cf89ce677e41 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -792,7 +792,7 @@ extern void free_netdev(struct net_device *dev);
extern void synchronize_net(void);
extern int register_netdevice_notifier(struct notifier_block *nb);
extern int unregister_netdevice_notifier(struct notifier_block *nb);
-extern int call_netdevice_notifiers(unsigned long val, void *v);
+extern int call_netdevice_notifiers(unsigned long val, struct net_device *dev);
extern struct net_device *dev_get_by_index(struct net *net, int ifindex);
extern struct net_device *__dev_get_by_index(struct net *net, int ifindex);
extern int dev_restart(struct net_device *dev);