mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
vlan: Use vlan_dev_real_dev in vlan_hwaccel_do_receive
[patch net-next-2.6] vlan: Use vlan_dev_real_dev in vlan_hwaccel_do_receive Use helper as in other places. Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
01b38606bd
commit
72ed62f7c9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ void vlan_hwaccel_do_receive(struct sk_buff *skb)
|
|||
struct net_device *dev = skb->dev;
|
||||
struct vlan_rx_stats *rx_stats;
|
||||
|
||||
skb->dev = vlan_dev_info(dev)->real_dev;
|
||||
skb->dev = vlan_dev_real_dev(dev);
|
||||
netif_nit_deliver(skb);
|
||||
|
||||
skb->dev = dev;
|
||||
|
|
Loading…
Reference in a new issue