aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sky2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/sky2.c')
-rw-r--r--drivers/net/sky2.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index fb1d2c30c1bb..4fb3db99bcd1 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -1511,6 +1511,13 @@ static int sky2_down(struct net_device *dev)
1511 imask &= ~portirq_msk[port]; 1511 imask &= ~portirq_msk[port];
1512 sky2_write32(hw, B0_IMSK, imask); 1512 sky2_write32(hw, B0_IMSK, imask);
1513 1513
1514 /*
1515 * Both ports share the NAPI poll on port 0, so if necessary undo the
1516 * the disable that is done in dev_close.
1517 */
1518 if (sky2->port == 0 && hw->ports > 1)
1519 netif_poll_enable(dev);
1520
1514 sky2_gmac_reset(hw, port); 1521 sky2_gmac_reset(hw, port);
1515 1522
1516 /* Stop transmitter */ 1523 /* Stop transmitter */