Skip to content

Commit

Permalink
Merge branch 'r8169-net'
Browse files Browse the repository at this point in the history
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: David S. Miller <[email protected]>
  • Loading branch information
davem330 committed Sep 13, 2014
2 parents 618073e + 36d8e82 commit 638898f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drivers/net/ethernet/realtek/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -1796,7 +1796,7 @@ static void __rtl8169_set_features(struct net_device *dev,
else
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;
else
tp->cp_cmd &= ~RxVlan;
Expand Down Expand Up @@ -6707,7 +6707,12 @@ static int rtl_open(struct net_device *dev)

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);

Expand Down

0 comments on commit 638898f

Please sign in to comment.