aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2007-09-16 18:33:32 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:51:20 -0400
commitad7379d49458a863c520a73a3c36441c572f850e (patch)
tree64c9c28a5b699e8be2cb84ef97c3c827ea118b39
parent22dd74950172dc8979576e2bef3b439f20ef0b05 (diff)
[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>
-rw-r--r--include/linux/netdevice.h2
-rw-r--r--net/core/dev.c4
2 files changed, 3 insertions, 3 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);
792extern void synchronize_net(void); 792extern void synchronize_net(void);
793extern int register_netdevice_notifier(struct notifier_block *nb); 793extern int register_netdevice_notifier(struct notifier_block *nb);
794extern int unregister_netdevice_notifier(struct notifier_block *nb); 794extern int unregister_netdevice_notifier(struct notifier_block *nb);
795extern int call_netdevice_notifiers(unsigned long val, void *v); 795extern int call_netdevice_notifiers(unsigned long val, struct net_device *dev);
796extern struct net_device *dev_get_by_index(struct net *net, int ifindex); 796extern struct net_device *dev_get_by_index(struct net *net, int ifindex);
797extern struct net_device *__dev_get_by_index(struct net *net, int ifindex); 797extern struct net_device *__dev_get_by_index(struct net *net, int ifindex);
798extern int dev_restart(struct net_device *dev); 798extern int dev_restart(struct net_device *dev);
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)
1206 * are as for raw_notifier_call_chain(). 1206 * are as for raw_notifier_call_chain().
1207 */ 1207 */
1208 1208
1209int call_netdevice_notifiers(unsigned long val, void *v) 1209int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
1210{ 1210{
1211 return raw_notifier_call_chain(&netdev_chain, val, v); 1211 return raw_notifier_call_chain(&netdev_chain, val, dev);
1212} 1212}
1213 1213
1214/* When > 0 there are consumers of rx skb time stamps */ 1214/* When > 0 there are consumers of rx skb time stamps */