aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/gianfar.c
diff options
context:
space:
mode:
authorSebastian Pöhn <sebastian.belden@googlemail.com>2011-07-25 20:03:13 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-28 01:39:30 -0400
commitb852b720877e6b8e12b95a7cb4e00ea351b8cbfc (patch)
treec28bbc1a90e4d79f51154c98b507410579a25cf9 /drivers/net/gianfar.c
parentb49179c071b89423e1f6c50f6fa3d48d8158bc35 (diff)
gianfar: fix bug caused by 87c288c6e9aa31720b72e2bc2d665e24e1653c3e
commit 87c288c6e9aa31720b72e2bc2d665e24e1653c3e "gianfar: do vlan cleanup" has two issues: # permutation of rx and tx flags # enabling vlan tag insertion by default (this leads to unusable connections on some configurations) If VLAN insertion is requested (via ethtool) it will be set at an other point ... Signed-off-by: Sebastian Poehn <sebastian.poehn@belden.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/gianfar.c')
-rw-r--r--drivers/net/gianfar.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 835cd2588148..2659daad783d 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -388,12 +388,8 @@ static void gfar_init_mac(struct net_device *ndev)
388 if (priv->hwts_rx_en) 388 if (priv->hwts_rx_en)
389 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE; 389 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
390 390
391 /* keep vlan related bits if it's enabled */
392 if (ndev->features & NETIF_F_HW_VLAN_TX)
393 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
394
395 if (ndev->features & NETIF_F_HW_VLAN_RX) 391 if (ndev->features & NETIF_F_HW_VLAN_RX)
396 tctrl |= TCTRL_VLINS; 392 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
397 393
398 /* Init rctrl based on our settings */ 394 /* Init rctrl based on our settings */
399 gfar_write(&regs->rctrl, rctrl); 395 gfar_write(&regs->rctrl, rctrl);