Skip to content

Commit

Permalink
[EP93xx_ETH]: Build fix after 2.6.24 NAPI changes.
Browse files Browse the repository at this point in the history
Reported by rmk from kautobuild output:

drivers/net/arm/ep93xx_eth.c:420: error: implicit declaration of function '__netif_rx_schedule_prep'

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Nov 14, 2007
1 parent 5f1a485 commit 4e04b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/arm/ep93xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ static irqreturn_t ep93xx_irq(int irq, void *dev_id)

if (status & REG_INTSTS_RX) {
spin_lock(&ep->rx_lock);
if (likely(__netif_rx_schedule_prep(dev, &ep->napi))) {
if (likely(netif_rx_schedule_prep(dev, &ep->napi))) {
wrl(ep, REG_INTEN, REG_INTEN_TX);
__netif_rx_schedule(dev, &ep->napi);
}
Expand Down

0 comments on commit 4e04b84

Please sign in to comment.