Commit 638898f1 authored by David S. Miller's avatar David S. Miller

Merge branch 'r8169-net'

Hayes Wang says:

====================
r8169: fix rx vlan

There are two issues for hw rx vlan. The patches are
used to fix them.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 618073e3 36d8e825
...@@ -1796,7 +1796,7 @@ static void __rtl8169_set_features(struct net_device *dev, ...@@ -1796,7 +1796,7 @@ static void __rtl8169_set_features(struct net_device *dev,
else else
tp->cp_cmd &= ~RxChkSum; tp->cp_cmd &= ~RxChkSum;
if (dev->features & NETIF_F_HW_VLAN_CTAG_RX) if (features & NETIF_F_HW_VLAN_CTAG_RX)
tp->cp_cmd |= RxVlan; tp->cp_cmd |= RxVlan;
else else
tp->cp_cmd &= ~RxVlan; tp->cp_cmd &= ~RxVlan;
...@@ -6707,7 +6707,12 @@ static int rtl_open(struct net_device *dev) ...@@ -6707,7 +6707,12 @@ static int rtl_open(struct net_device *dev)
rtl8169_init_phy(dev, tp); rtl8169_init_phy(dev, tp);
__rtl8169_set_features(dev, dev->features); if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
tp->cp_cmd |= RxVlan;
else
tp->cp_cmd &= ~RxVlan;
RTL_W16(CPlusCmd, tp->cp_cmd);
rtl_pll_power_up(tp); rtl_pll_power_up(tp);
......
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