net/mrvl: fix typo in log message

Show appropriate log message in case Tx offloads are either
not supported or missing.

Fixes: 7d8f6c20cc7c ("net/mrvl: switch to the new Tx offload API")
Cc: stable@dpdk.org

Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
This commit is contained in:
Tomasz Duszynski 2018-03-19 13:37:22 +01:00 committed by Ferruh Yigit
parent bcab6c1d27
commit 6f324a91df

View File

@ -1700,14 +1700,14 @@ mrvl_tx_queue_offloads_okay(struct rte_eth_dev *dev, uint64_t requested)
uint64_t missing = mandatory & ~requested;
if (unsupported) {
RTE_LOG(ERR, PMD, "Some Rx offloads are not supported. "
RTE_LOG(ERR, PMD, "Some Tx offloads are not supported. "
"Requested 0x%" PRIx64 " supported 0x%" PRIx64 ".\n",
requested, supported);
return 0;
}
if (missing) {
RTE_LOG(ERR, PMD, "Some Rx offloads are missing. "
RTE_LOG(ERR, PMD, "Some Tx offloads are missing. "
"Requested 0x%" PRIx64 " missing 0x%" PRIx64 ".\n",
requested, missing);
return 0;