Commit ad7379d4 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller

[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: default avatarEric W. Biederman <ebiederm@xmission.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 22dd7495
...@@ -792,7 +792,7 @@ extern void free_netdev(struct net_device *dev); ...@@ -792,7 +792,7 @@ extern void free_netdev(struct net_device *dev);
extern void synchronize_net(void); extern void synchronize_net(void);
extern int register_netdevice_notifier(struct notifier_block *nb); extern int register_netdevice_notifier(struct notifier_block *nb);
extern int unregister_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 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); extern int dev_restart(struct net_device *dev);
......
...@@ -1206,9 +1206,9 @@ int unregister_netdevice_notifier(struct notifier_block *nb) ...@@ -1206,9 +1206,9 @@ int unregister_netdevice_notifier(struct notifier_block *nb)
* are as for raw_notifier_call_chain(). * 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 */ /* When > 0 there are consumers of rx skb time stamps */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment