netdev: Convert all drivers away from netif_schedule().

They logically all want to trigger a schedule for all device
TX queues.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2008-07-15 03:47:41 -07:00
parent 8f0f2223cc
commit 263ba3204a
9 changed files with 11 additions and 11 deletions

View File

@@ -165,7 +165,7 @@ static void macb_handle_link_change(struct net_device *dev)
if (phydev->link != bp->link) {
if (phydev->link)
netif_schedule(dev);
netif_tx_schedule_all(dev);
else {
bp->speed = 0;
bp->duplex = -1;