fix typos introduced in 16942
SVN-Revision: 16943
This commit is contained in:
parent
8b17c74376
commit
5df0606265
1 changed files with 2 additions and 2 deletions
|
@ -453,7 +453,7 @@ static int bcm_enet_poll(struct napi_struct *napi, int budget)
|
||||||
/* no more packet in rx/tx queue, remove device from poll
|
/* no more packet in rx/tx queue, remove device from poll
|
||||||
* queue */
|
* queue */
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
|
||||||
netif_rx_schedule(dev, napi);
|
netif_rx_complete(dev, napi);
|
||||||
#else
|
#else
|
||||||
napi_complete(napi);
|
napi_complete(napi);
|
||||||
#endif
|
#endif
|
||||||
|
@ -509,7 +509,7 @@ static irqreturn_t bcm_enet_isr_dma(int irq, void *dev_id)
|
||||||
enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
|
enet_dma_writel(priv, 0, ENETDMA_IRMASK_REG(priv->tx_chan));
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
|
||||||
netif_rx_schedul(dev, &priv->napi);
|
netif_rx_schedule(dev, &priv->napi);
|
||||||
#else
|
#else
|
||||||
napi_schedule(&priv->napi);
|
napi_schedule(&priv->napi);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue