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

@@ -1588,7 +1588,7 @@ static void adjust_link(struct net_device *dev)
if (!ugeth->oldlink) {
new_state = 1;
ugeth->oldlink = 1;
netif_schedule(dev);
netif_tx_schedule_all(dev);
}
} else if (ugeth->oldlink) {
new_state = 1;
@@ -3372,7 +3372,7 @@ static void ucc_geth_timeout(struct net_device *dev)
ucc_geth_startup(ugeth);
}
netif_schedule(dev);
netif_tx_schedule_all(dev);
}
/* This is called by the kernel when a frame is ready for transmission. */