mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
r8169: fix an if condition
There is an extra semi-colon so __rtl8169_set_features() is called every
time.
Fixes: 929a031dfd
('r8169: adjust __rtl8169_set_features')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Hayes Wang <hayeswang@realtek.com>--
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d70b113723
commit
85911d7110
@ -1818,7 +1818,7 @@ static int rtl8169_set_features(struct net_device *dev,
|
||||
features &= NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX;
|
||||
|
||||
rtl_lock_work(tp);
|
||||
if (features ^ dev->features);
|
||||
if (features ^ dev->features)
|
||||
__rtl8169_set_features(dev, features);
|
||||
rtl_unlock_work(tp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user