[brcm63xx] fix typos introduced in 16942
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 21 Jul 2009 12:22:01 +0000 (12:22 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 21 Jul 2009 12:22:01 +0000 (12:22 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16943 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c

index 0c6562b..27d03eb 100644 (file)
@@ -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
         * queue */
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
-       netif_rx_schedule(dev, napi);
+       netif_rx_complete(dev, napi);
 #else
        napi_complete(napi);
 #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));
 
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
-       netif_rx_schedul(dev, &priv->napi);
+       netif_rx_schedule(dev, &priv->napi);
 #else
        napi_schedule(&priv->napi);
 #endif
This page took 0.026606 seconds and 4 git commands to generate.