Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48c20407 authored by hayeswang's avatar hayeswang Committed by David S. Miller
Browse files

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: default avatarHayes Wang <hayeswang@realtek.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 618073e3
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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);