diff options
Diffstat (limited to 'drivers/net/hamradio/bpqether.c')
-rw-r--r-- | drivers/net/hamradio/bpqether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/hamradio/bpqether.c b/drivers/net/hamradio/bpqether.c index 5ddf8b0c34f9..5f4b4c6c9f76 100644 --- a/drivers/net/hamradio/bpqether.c +++ b/drivers/net/hamradio/bpqether.c | |||
@@ -172,7 +172,7 @@ static int bpq_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_ty | |||
172 | struct ethhdr *eth; | 172 | struct ethhdr *eth; |
173 | struct bpqdev *bpq; | 173 | struct bpqdev *bpq; |
174 | 174 | ||
175 | if (dev->nd_net != &init_net) | 175 | if (dev_net(dev) != &init_net) |
176 | goto drop; | 176 | goto drop; |
177 | 177 | ||
178 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) | 178 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) |
@@ -553,7 +553,7 @@ static int bpq_device_event(struct notifier_block *this,unsigned long event, voi | |||
553 | { | 553 | { |
554 | struct net_device *dev = (struct net_device *)ptr; | 554 | struct net_device *dev = (struct net_device *)ptr; |
555 | 555 | ||
556 | if (dev->nd_net != &init_net) | 556 | if (dev_net(dev) != &init_net) |
557 | return NOTIFY_DONE; | 557 | return NOTIFY_DONE; |
558 | 558 | ||
559 | if (!dev_is_ethdev(dev)) | 559 | if (!dev_is_ethdev(dev)) |