Przeglądaj źródła

r8169: fix setting rx vlan

The setting should depend on the new features not the current one.

Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hayeswang 11 lat temu
rodzic
commit
36d8e82541
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      drivers/net/ethernet/realtek/r8169.c

+ 1 - 1
drivers/net/ethernet/realtek/r8169.c

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