This variable is not used.

Fixes: 2b1472d7150c ("net/atlantic: implement Tx path")
Cc: sta...@dpdk.org

Signed-off-by: David Marchand <david.march...@redhat.com>
---
 drivers/net/atlantic/atl_rxtx.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/atlantic/atl_rxtx.c b/drivers/net/atlantic/atl_rxtx.c
index aeb79bf5a2..cb6f8141a8 100644
--- a/drivers/net/atlantic/atl_rxtx.c
+++ b/drivers/net/atlantic/atl_rxtx.c
@@ -1127,10 +1127,9 @@ atl_xmit_cleanup(struct atl_tx_queue *txq)
        if (txq != NULL) {
                sw_ring = txq->sw_ring;
                int head = txq->tx_head;
-               int cnt;
-               int i;
+               int cnt = head;
 
-               for (i = 0, cnt = head; ; i++) {
+               while (true) {
                        txd = &txq->hw_ring[cnt];
 
                        if (txd->dd)
-- 
2.38.1

Reply via email to