ena: Align req_id and qid print order

In most places, the req_id is printed first, and the qid is printed as a
second. To align the driver, one printout was reworked and the print
order of those variables was changed.

Suggested by: rpokala
Obtained from: Semihalf
MFC after: 2 weeks
Sponsored by: Amazon, Inc.
This commit is contained in:
Michal Krawczyk 2022-07-04 09:03:54 +02:00 committed by Marcin Wojtas
parent 3bf6636512
commit 38d036e91a

View File

@ -219,8 +219,8 @@ ena_get_tx_req_id(struct ena_ring *tx_ring, struct ena_com_io_cq *io_cq,
return (0);
ena_log(adapter->pdev, ERR,
"tx_info doesn't have valid mbuf. qid %hu req_id %hu\n",
tx_ring->qid, *req_id);
"tx_info doesn't have valid mbuf. req_id %hu qid %hu\n",
*req_id, tx_ring->qid);
err:
ena_trigger_reset(adapter, ENA_REGS_RESET_INV_TX_REQ_ID);