diff options
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"); |