Commit a666960d authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

liquidio: remove redundant setting of inst_processed to zero

The zero value assigned to inst_processed at the end of each
iteration of the do-while loop is overwritten on the next iteration
and hence it is a redundant assignment and can be removed. Cleans
up clang warning:

drivers/net/ethernet/cavium/liquidio/request_manager.c:480:3:
warning: Value stored to 'inst_processed' is never read
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5618c8e2
...@@ -489,8 +489,6 @@ octeon_flush_iq(struct octeon_device *oct, struct octeon_instr_queue *iq, ...@@ -489,8 +489,6 @@ octeon_flush_iq(struct octeon_device *oct, struct octeon_instr_queue *iq,
} }
tot_inst_processed += inst_processed; tot_inst_processed += inst_processed;
inst_processed = 0;
} while (tot_inst_processed < napi_budget); } while (tot_inst_processed < napi_budget);
if (napi_budget && (tot_inst_processed >= napi_budget)) if (napi_budget && (tot_inst_processed >= napi_budget))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment