net/dpaa2: fix build with clang 15

This variable is not used.

Fixes: 4690a6114f ("net/dpaa2: enable error queues optionally")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
This commit is contained in:
David Marchand 2022-11-18 09:53:07 +01:00
parent f25fa03ad1
commit d9298902d8

View File

@ -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;