diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-12-29 21:22:43 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-29 21:22:43 -0500 |
commit | 36f8b9238373751b684650871fd161546b10116c (patch) | |
tree | e26f2f9b497d2d9a55db244cad3bae6dcf39e30f /drivers/net/smsc911x.c | |
parent | 8eb79863962bbf18ebf648335e329bfd468432fa (diff) |
smsc911x: compile fix re netif_rx signature changes
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/smsc911x.c')
-rw-r--r-- | drivers/net/smsc911x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c index 5e989d884ddd..dc3f1108884d 100644 --- a/drivers/net/smsc911x.c +++ b/drivers/net/smsc911x.c | |||
@@ -1484,13 +1484,13 @@ static irqreturn_t smsc911x_irqhandler(int irq, void *dev_id) | |||
1484 | } | 1484 | } |
1485 | 1485 | ||
1486 | if (likely(intsts & inten & INT_STS_RSFL_)) { | 1486 | if (likely(intsts & inten & INT_STS_RSFL_)) { |
1487 | if (likely(netif_rx_schedule_prep(dev, &pdata->napi))) { | 1487 | if (likely(netif_rx_schedule_prep(&pdata->napi))) { |
1488 | /* Disable Rx interrupts */ | 1488 | /* Disable Rx interrupts */ |
1489 | temp = smsc911x_reg_read(pdata, INT_EN); | 1489 | temp = smsc911x_reg_read(pdata, INT_EN); |
1490 | temp &= (~INT_EN_RSFL_EN_); | 1490 | temp &= (~INT_EN_RSFL_EN_); |
1491 | smsc911x_reg_write(pdata, INT_EN, temp); | 1491 | smsc911x_reg_write(pdata, INT_EN, temp); |
1492 | /* Schedule a NAPI poll */ | 1492 | /* Schedule a NAPI poll */ |
1493 | __netif_rx_schedule(dev, &pdata->napi); | 1493 | __netif_rx_schedule(&pdata->napi); |
1494 | } else { | 1494 | } else { |
1495 | SMSC_WARNING(RX_ERR, | 1495 | SMSC_WARNING(RX_ERR, |
1496 | "netif_rx_schedule_prep failed"); | 1496 | "netif_rx_schedule_prep failed"); |