diff options
Diffstat (limited to 'net/ax25/af_ax25.c')
-rw-r--r-- | net/ax25/af_ax25.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ax25/af_ax25.c b/net/ax25/af_ax25.c index e277e38f736b..4b4d2b779ec1 100644 --- a/net/ax25/af_ax25.c +++ b/net/ax25/af_ax25.c | |||
@@ -111,9 +111,9 @@ again: | |||
111 | * Handle device status changes. | 111 | * Handle device status changes. |
112 | */ | 112 | */ |
113 | static int ax25_device_event(struct notifier_block *this, unsigned long event, | 113 | static int ax25_device_event(struct notifier_block *this, unsigned long event, |
114 | void *ptr) | 114 | void *ptr) |
115 | { | 115 | { |
116 | struct net_device *dev = (struct net_device *)ptr; | 116 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
117 | 117 | ||
118 | if (!net_eq(dev_net(dev), &init_net)) | 118 | if (!net_eq(dev_net(dev), &init_net)) |
119 | return NOTIFY_DONE; | 119 | return NOTIFY_DONE; |
@@ -1974,7 +1974,7 @@ static struct packet_type ax25_packet_type __read_mostly = { | |||
1974 | }; | 1974 | }; |
1975 | 1975 | ||
1976 | static struct notifier_block ax25_dev_notifier = { | 1976 | static struct notifier_block ax25_dev_notifier = { |
1977 | .notifier_call =ax25_device_event, | 1977 | .notifier_call = ax25_device_event, |
1978 | }; | 1978 | }; |
1979 | 1979 | ||
1980 | static int __init ax25_init(void) | 1980 | static int __init ax25_init(void) |