diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-01-19 19:43:59 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-21 17:33:50 -0500 |
commit | 288379f050284087578b77e04f040b57db3db3f8 (patch) | |
tree | ac5f5c83e2778a1966327d87316fc94067363b45 /drivers/net/qla3xxx.c | |
parent | 627af770c63acddc2402dd19fec70df5c3ad8ab7 (diff) |
net: Remove redundant NAPI functions
Following the removal of the unused struct net_device * parameter from
the NAPI functions named *netif_rx_* in commit 908a7a1, they are
exactly equivalent to the corresponding *napi_* functions and are
therefore redundant.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/qla3xxx.c')
-rw-r--r-- | drivers/net/qla3xxx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/qla3xxx.c b/drivers/net/qla3xxx.c index 189ec29ac7a4..8b2823c8dccf 100644 --- a/drivers/net/qla3xxx.c +++ b/drivers/net/qla3xxx.c | |||
@@ -2292,7 +2292,7 @@ static int ql_poll(struct napi_struct *napi, int budget) | |||
2292 | 2292 | ||
2293 | if (tx_cleaned + rx_cleaned != budget) { | 2293 | if (tx_cleaned + rx_cleaned != budget) { |
2294 | spin_lock_irqsave(&qdev->hw_lock, hw_flags); | 2294 | spin_lock_irqsave(&qdev->hw_lock, hw_flags); |
2295 | __netif_rx_complete(napi); | 2295 | __napi_complete(napi); |
2296 | ql_update_small_bufq_prod_index(qdev); | 2296 | ql_update_small_bufq_prod_index(qdev); |
2297 | ql_update_lrg_bufq_prod_index(qdev); | 2297 | ql_update_lrg_bufq_prod_index(qdev); |
2298 | writel(qdev->rsp_consumer_index, | 2298 | writel(qdev->rsp_consumer_index, |
@@ -2351,8 +2351,8 @@ static irqreturn_t ql3xxx_isr(int irq, void *dev_id) | |||
2351 | spin_unlock(&qdev->adapter_lock); | 2351 | spin_unlock(&qdev->adapter_lock); |
2352 | } else if (value & ISP_IMR_DISABLE_CMPL_INT) { | 2352 | } else if (value & ISP_IMR_DISABLE_CMPL_INT) { |
2353 | ql_disable_interrupts(qdev); | 2353 | ql_disable_interrupts(qdev); |
2354 | if (likely(netif_rx_schedule_prep(&qdev->napi))) { | 2354 | if (likely(napi_schedule_prep(&qdev->napi))) { |
2355 | __netif_rx_schedule(&qdev->napi); | 2355 | __napi_schedule(&qdev->napi); |
2356 | } | 2356 | } |
2357 | } else { | 2357 | } else { |
2358 | return IRQ_NONE; | 2358 | return IRQ_NONE; |