Skip to content

Commit

Permalink
drivers: fix typos found by Lintian
Browse files Browse the repository at this point in the history
[ upstream commit bdab530 ]

Signed-off-by: Luca Boccassi <bluca@debian.org>
  • Loading branch information
bluca authored and kevintraynor committed Nov 23, 2022
1 parent b16910e commit 674f2e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/net/bonding/rte_eth_bond_pmd.c
Expand Up @@ -198,7 +198,7 @@ bond_ethdev_8023ad_flow_verify(struct rte_eth_dev *bond_dev,
if (slave_info.max_rx_queues < bond_dev->data->nb_rx_queues ||
slave_info.max_tx_queues < bond_dev->data->nb_tx_queues) {
RTE_BOND_LOG(ERR,
"%s: Slave %d capabilities doesn't allow to allocate additional queues",
"%s: Slave %d capabilities doesn't allow allocating additional queues",
__func__, slave_port);
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/hns3/hns3_ethdev.c
Expand Up @@ -1672,7 +1672,7 @@ hns3_set_default_mac_addr(struct rte_eth_dev *dev,
hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
mac_addr);
hns3_warn(hw,
"Failed to roll back to del setted mac addr(%s): %d",
"Failed to roll back to del set mac addr(%s): %d",
mac_str, ret_val);
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/net/qede/base/ecore_int.c
Expand Up @@ -366,7 +366,7 @@ enum _ecore_status_t ecore_pglueb_rbc_attn_handler(struct ecore_hwfn *p_hwfn,

tmp = ecore_rd(p_hwfn, p_ptt, PGLUE_B_REG_TX_ERR_WR_DETAILS_ICPL);
if (tmp & ECORE_PGLUE_ATTENTION_ICPL_VALID)
DP_NOTICE(p_hwfn, false, "ICPL erorr - %08x\n", tmp);
DP_NOTICE(p_hwfn, false, "ICPL error - %08x\n", tmp);

tmp = ecore_rd(p_hwfn, p_ptt, PGLUE_B_REG_MASTER_ZLR_ERR_DETAILS);
if (tmp & ECORE_PGLUE_ATTENTION_ZLR_VALID) {
Expand All @@ -378,7 +378,7 @@ enum _ecore_status_t ecore_pglueb_rbc_attn_handler(struct ecore_hwfn *p_hwfn,
PGLUE_B_REG_MASTER_ZLR_ERR_ADD_63_32);

DP_NOTICE(p_hwfn, false,
"ICPL erorr - %08x [Address %08x:%08x]\n",
"ICPL error - %08x [Address %08x:%08x]\n",
tmp, addr_hi, addr_lo);
}

Expand Down

0 comments on commit 674f2e7

Please sign in to comment.