diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-12-17 10:55:05 +0000 |
---|---|---|
committer | Jeff Johnson <jeff.johnson@oss.qualcomm.com> | 2024-12-19 09:41:06 -0800 |
commit | 578f6fc55c2ced5f68a7f87edbf6db3663dc6b57 (patch) | |
tree | 8a7435bac103337659031e815166069bf9111682 | |
parent | 8534c42397ed8f05257dbddcd305a351ad40add1 (diff) |
wifi: ath12k: Fix spelling mistake "requestted" -> "requested"
There is a spelling mistake in an ath12k_err error message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Kalle Valo <kvalo@kernel.org>
Link: https://patch.msgid.link/20241217105505.306047-1-colin.i.king@gmail.com
Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath12k/qmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath12k/qmi.c b/drivers/net/wireless/ath/ath12k/qmi.c index a8ed86a294c3..5c3563383fab 100644 --- a/drivers/net/wireless/ath/ath12k/qmi.c +++ b/drivers/net/wireless/ath/ath12k/qmi.c @@ -2618,7 +2618,7 @@ static int ath12k_qmi_alloc_target_mem_chunk(struct ath12k_base *ab) if (!ag->mlo_mem.mlo_mem_size) { ag->mlo_mem.mlo_mem_size = mlo_size; } else if (ag->mlo_mem.mlo_mem_size != mlo_size) { - ath12k_err(ab, "QMI MLO memory size error, expected size is %d but requestted size is %d", + ath12k_err(ab, "QMI MLO memory size error, expected size is %d but requested size is %d", ag->mlo_mem.mlo_mem_size, mlo_size); ret = -EINVAL; goto err; |