ARM: IXP4xx Ethernet NAPI fix

This patch removes some weirdness from IXP4xx Ethernet driver.

Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
Krzysztof Halasa 2008-07-09 13:10:32 +02:00 committed by Jeff Garzik
parent e35259a953
commit 9076689ab0
1 changed files with 1 additions and 2 deletions

View File

@ -522,7 +522,6 @@ static int eth_poll(struct napi_struct *napi, int budget)
#endif #endif
if ((n = queue_get_desc(rxq, port, 0)) < 0) { if ((n = queue_get_desc(rxq, port, 0)) < 0) {
received = 0; /* No packet received */
#if DEBUG_RX #if DEBUG_RX
printk(KERN_DEBUG "%s: eth_poll netif_rx_complete\n", printk(KERN_DEBUG "%s: eth_poll netif_rx_complete\n",
dev->name); dev->name);
@ -543,7 +542,7 @@ static int eth_poll(struct napi_struct *napi, int budget)
printk(KERN_DEBUG "%s: eth_poll all done\n", printk(KERN_DEBUG "%s: eth_poll all done\n",
dev->name); dev->name);
#endif #endif
return 0; /* all work done */ return received; /* all work done */
} }
desc = rx_desc_ptr(port, n); desc = rx_desc_ptr(port, n);