From d9298902d8e3bdf9abe80b88f6d1abe64668c984 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Fri, 18 Nov 2022 09:53:07 +0100 Subject: [PATCH] net/dpaa2: fix build with clang 15 This variable is not used. Fixes: 4690a6114ff6 ("net/dpaa2: enable error queues optionally") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Tyler Retzlaff --- drivers/net/dpaa2/dpaa2_rxtx.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_rxtx.c b/drivers/net/dpaa2/dpaa2_rxtx.c index 5b02260e71..f60e78e1fd 100644 --- a/drivers/net/dpaa2/dpaa2_rxtx.c +++ b/drivers/net/dpaa2/dpaa2_rxtx.c @@ -620,7 +620,7 @@ dump_err_pkts(struct dpaa2_queue *dpaa2_q) /* Function receive frames for a given device and VQ */ struct qbman_result *dq_storage; uint32_t fqid = dpaa2_q->fqid; - int ret, num_rx = 0, num_pulled; + int ret, num_rx = 0; uint8_t pending, status; struct qbman_swp *swp; const struct qbman_fd *fd; @@ -660,7 +660,6 @@ dump_err_pkts(struct dpaa2_queue *dpaa2_q) while (!qbman_check_command_complete(dq_storage)) ; - num_pulled = 0; pending = 1; do { /* Loop until the dq_storage is updated with @@ -695,7 +694,6 @@ dump_err_pkts(struct dpaa2_queue *dpaa2_q) dq_storage++; num_rx++; - num_pulled++; } while (pending); dpaa2_q->err_pkts += num_rx;