mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
mana: Remove stray semicolons
MFC after: 1 week (cherry picked from commit 6ccf4f4071c5bf85a9aad593e92d1623e949c039)
This commit is contained in:
parent
88971439fb
commit
e96a62ea65
1 changed files with 2 additions and 2 deletions
|
|
@ -1426,7 +1426,7 @@ mana_poll_tx_cq(struct mana_cq *cq)
|
|||
uint16_t next_to_complete;
|
||||
if_t ndev;
|
||||
int comp_read;
|
||||
int txq_idx = txq->idx;;
|
||||
int txq_idx = txq->idx;
|
||||
int i;
|
||||
int sa_drop = 0;
|
||||
|
||||
|
|
@ -2114,7 +2114,7 @@ mana_create_txq(struct mana_port_context *apc, if_t net)
|
|||
|
||||
mana_dbg(NULL,
|
||||
"txq %d, txq gdma id %d, txq cq gdma id %d\n",
|
||||
i, txq->gdma_txq_id, cq->gdma_id);;
|
||||
i, txq->gdma_txq_id, cq->gdma_id);
|
||||
|
||||
if (cq->gdma_id >= gc->max_num_cqs) {
|
||||
if_printf(net, "CQ id %u too large.\n", cq->gdma_id);
|
||||
|
|
|
|||
Loading…
Reference in a new issue