|
@@ -3607,7 +3607,6 @@ static int ucc_geth_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
if (bd == ugeth->confBd[txQ]) {
|
|
if (bd == ugeth->confBd[txQ]) {
|
|
if (!netif_queue_stopped(dev))
|
|
if (!netif_queue_stopped(dev))
|
|
netif_stop_queue(dev);
|
|
netif_stop_queue(dev);
|
|
- return NETDEV_TX_BUSY;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
ugeth->txBd[txQ] = bd;
|
|
ugeth->txBd[txQ] = bd;
|
|
@@ -3623,7 +3622,7 @@ static int ucc_geth_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
|
|
|
spin_unlock_irq(&ugeth->lock);
|
|
spin_unlock_irq(&ugeth->lock);
|
|
|
|
|
|
- return NETDEV_TX_OK;
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int ucc_geth_rx(struct ucc_geth_private *ugeth, u8 rxQ, int rx_work_limit)
|
|
static int ucc_geth_rx(struct ucc_geth_private *ugeth, u8 rxQ, int rx_work_limit)
|