diff options
author | Shannon Nelson <snelson@pensando.io> | 2020-09-01 11:20:23 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-02 15:47:01 -0700 |
commit | 5b1d8e81a2166bec8970a1c4f1bc0761866ba83d (patch) | |
tree | 93b5ff47fc1a1906560fd53a745fc570d8ed7b09 /drivers/net/ethernet/pensando/ionic | |
parent | b4280948aa22abfe175b70bff34071a9ddc0f7f9 (diff) |
ionic: remove unused variable
Remove a vestigial variable.
Pointed out in https://lore.kernel.org/lkml/20200806143735.GA9232@xsang-OptiPlex-9020/
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/pensando/ionic')
-rw-r--r-- | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c index 060aaf00caed..b5f8d8250aff 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c @@ -670,7 +670,6 @@ void ionic_tx_flush(struct ionic_cq *cq) void ionic_tx_empty(struct ionic_queue *q) { struct ionic_desc_info *desc_info; - int done = 0; /* walk the not completed tx entries, if any */ while (q->head_idx != q->tail_idx) { @@ -679,7 +678,6 @@ void ionic_tx_empty(struct ionic_queue *q) ionic_tx_clean(q, desc_info, NULL, desc_info->cb_arg); desc_info->cb = NULL; desc_info->cb_arg = NULL; - done++; } } |