r8169: fix the default setting of rx vlan
If the parameter "features" of __rtl8169_set_features() is equal to dev->features, the variable "changed" is alwayes 0, and nothing would be changed. Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
618073e30c
commit
48c20407f4
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue