aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sfc/efx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/sfc/efx.c')
-rw-r--r--drivers/net/sfc/efx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c
index 7673fd92eaf..77aca5d67b5 100644
--- a/drivers/net/sfc/efx.c
+++ b/drivers/net/sfc/efx.c
@@ -225,11 +225,11 @@ static int efx_poll(struct napi_struct *napi, int budget)
225 225
226 if (rx_packets < budget) { 226 if (rx_packets < budget) {
227 /* There is no race here; although napi_disable() will 227 /* There is no race here; although napi_disable() will
228 * only wait for netif_rx_complete(), this isn't a problem 228 * only wait for napi_complete(), this isn't a problem
229 * since efx_channel_processed() will have no effect if 229 * since efx_channel_processed() will have no effect if
230 * interrupts have already been disabled. 230 * interrupts have already been disabled.
231 */ 231 */
232 netif_rx_complete(napi); 232 napi_complete(napi);
233 efx_channel_processed(channel); 233 efx_channel_processed(channel);
234 } 234 }
235 235