nfp: Fix spelling mistake "tha" -> "the"
authorColin Ian King <colin.i.king@gmail.com>
Wed, 7 Dec 2022 09:43:12 +0000 (09:43 +0000)
committerJakub Kicinski <kuba@kernel.org>
Fri, 9 Dec 2022 03:44:06 +0000 (19:44 -0800)
There is a spelling mistake in a nn_dp_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/20221207094312.2281493-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/netronome/nfp/ccm_mbox.c

index 4247bca..aa8aba4 100644 (file)
@@ -503,7 +503,7 @@ nfp_ccm_mbox_msg_prepare(struct nfp_net *nn, struct sk_buff *skb,
        max_len = max(max_reply_size, round_up(skb->len, 4));
        if (max_len > mbox_max) {
                nn_dp_warn(&nn->dp,
-                          "message too big for tha mailbox: %u/%u vs %u\n",
+                          "message too big for the mailbox: %u/%u vs %u\n",
                           skb->len, max_reply_size, mbox_max);
                return -EMSGSIZE;
        }