diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/tg3.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 0fafc5264627..3c5c9fafe9c8 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -8399,8 +8399,11 @@ static int tg3_run_loopback(struct tg3 *tp, int loopback_mode) | |||
8399 | } | 8399 | } |
8400 | mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) | | 8400 | mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) | |
8401 | MAC_MODE_LINK_POLARITY | MAC_MODE_PORT_MODE_GMII; | 8401 | MAC_MODE_LINK_POLARITY | MAC_MODE_PORT_MODE_GMII; |
8402 | if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) | 8402 | if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) { |
8403 | mac_mode &= ~MAC_MODE_LINK_POLARITY; | 8403 | mac_mode &= ~MAC_MODE_LINK_POLARITY; |
8404 | tg3_writephy(tp, MII_TG3_EXT_CTRL, | ||
8405 | MII_TG3_EXT_CTRL_LNK3_LED_MODE); | ||
8406 | } | ||
8404 | tw32(MAC_MODE, mac_mode); | 8407 | tw32(MAC_MODE, mac_mode); |
8405 | } | 8408 | } |
8406 | else | 8409 | else |