aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@wantstofly.org>2009-02-24 10:41:47 -0500
committerDavid S. Miller <davem@davemloft.net>2009-02-25 02:17:22 -0500
commita5fe36165339c57b341250e8252d833e91317c70 (patch)
treee01d153816170118060bb7cda6bf795b2d55ba87
parentea8a8642636b905c79aed104a0755b3fa2e65e8e (diff)
mv643xx_eth: move a couple of init actions from ->open() to port probe
Move the netif_carrier_off() call in ->open() to port probe, so that ethtool doesn't report the link as being up before we have up'd the interface. Move initialisation of the rx/tx coalescing timers from ->open() to port probe, so that we don't reset the coalescing timers every time the interface is up'd. Signed-off-by: Lennert Buytenhek <buytenh@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/mv643xx_eth.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c
index 7d10897dcc85..e1a18e3540ad 100644
--- a/drivers/net/mv643xx_eth.c
+++ b/drivers/net/mv643xx_eth.c
@@ -2388,13 +2388,8 @@ static int mv643xx_eth_open(struct net_device *dev)
2388 } 2388 }
2389 } 2389 }
2390 2390
2391 netif_carrier_off(dev);
2392
2393 port_start(mp); 2391 port_start(mp);
2394 2392
2395 set_rx_coal(mp, 0);
2396 set_tx_coal(mp, 0);
2397
2398 wrlp(mp, INT_MASK_EXT, INT_EXT_LINK_PHY | INT_EXT_TX); 2393 wrlp(mp, INT_MASK_EXT, INT_EXT_LINK_PHY | INT_EXT_TX);
2399 wrlp(mp, INT_MASK, INT_TX_END | INT_RX | INT_EXT); 2394 wrlp(mp, INT_MASK, INT_TX_END | INT_RX | INT_EXT);
2400 2395
@@ -2960,6 +2955,11 @@ static int mv643xx_eth_probe(struct platform_device *pdev)
2960 if (mp->shared->win_protect) 2955 if (mp->shared->win_protect)
2961 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect); 2956 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2962 2957
2958 netif_carrier_off(dev);
2959
2960 set_rx_coal(mp, 0);
2961 set_tx_coal(mp, 0);
2962
2963 err = register_netdev(dev); 2963 err = register_netdev(dev);
2964 if (err) 2964 if (err)
2965 goto out; 2965 goto out;