diff options
author | Mamatha Telu <telumamatha36@gmail.com> | 2020-04-12 21:24:35 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2020-04-15 11:01:52 +0300 |
commit | 8a7968bee8d08835caa0d7bc0c25d750a5b52389 (patch) | |
tree | e57df386ba09d3040f5cb35ecc6406790963f295 /drivers/net/wireless/ath/ath10k/sdio.c | |
parent | ec48d28ba291943d4ae2f873a4330debddecbca6 (diff) | |
download | linux-8a7968bee8d08835caa0d7bc0c25d750a5b52389.tar.xz |
ath10k: Fix typo in warning messages
Fix some typo:
s/fnrom/from
s/pkgs/pkts/
s/AMSUs/AMSDUs/
Signed-off-by: Mamatha Telu <telumamatha36@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1586715875-5182-1-git-send-email-telumamatha36@gmail.com
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/sdio.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/sdio.c b/drivers/net/wireless/ath/ath10k/sdio.c index 5a0db342e5ad..943db9f401d8 100644 --- a/drivers/net/wireless/ath/ath10k/sdio.c +++ b/drivers/net/wireless/ath/ath10k/sdio.c @@ -542,7 +542,7 @@ static int ath10k_sdio_mbox_rx_alloc(struct ath10k *ar, int pkt_cnt = 0; if (n_lookaheads > ATH10K_SDIO_MAX_RX_MSGS) { - ath10k_warn(ar, "the total number of pkgs to be fetched (%u) exceeds maximum %u\n", + ath10k_warn(ar, "the total number of pkts to be fetched (%u) exceeds maximum %u\n", n_lookaheads, ATH10K_SDIO_MAX_RX_MSGS); ret = -ENOMEM; goto err; |