Commit eb9bd8b9 authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo

ath10k: fix some spelling mistakes

Trivial fix to some spelling mistakes in ath10k_err and ath10k_dbg
messages:
"capablity" -> "capability"
"registed" -> "registered"
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 539b44e7
...@@ -543,7 +543,7 @@ static int ath10k_qmi_cap_send_sync_msg(struct ath10k_qmi *qmi) ...@@ -543,7 +543,7 @@ static int ath10k_qmi_cap_send_sync_msg(struct ath10k_qmi *qmi)
goto out; goto out;
if (resp->resp.result != QMI_RESULT_SUCCESS_V01) { if (resp->resp.result != QMI_RESULT_SUCCESS_V01) {
ath10k_err(ar, "capablity req rejected: %d\n", resp->resp.error); ath10k_err(ar, "capability req rejected: %d\n", resp->resp.error);
ret = -EINVAL; ret = -EINVAL;
goto out; goto out;
} }
...@@ -623,7 +623,7 @@ static int ath10k_qmi_host_cap_send_sync(struct ath10k_qmi *qmi) ...@@ -623,7 +623,7 @@ static int ath10k_qmi_host_cap_send_sync(struct ath10k_qmi *qmi)
goto out; goto out;
} }
ath10k_dbg(ar, ATH10K_DBG_QMI, "qmi host capablity request completed\n"); ath10k_dbg(ar, ATH10K_DBG_QMI, "qmi host capability request completed\n");
return 0; return 0;
out: out:
...@@ -657,7 +657,7 @@ ath10k_qmi_ind_register_send_sync_msg(struct ath10k_qmi *qmi) ...@@ -657,7 +657,7 @@ ath10k_qmi_ind_register_send_sync_msg(struct ath10k_qmi *qmi)
wlfw_ind_register_req_msg_v01_ei, &req); wlfw_ind_register_req_msg_v01_ei, &req);
if (ret < 0) { if (ret < 0) {
qmi_txn_cancel(&txn); qmi_txn_cancel(&txn);
ath10k_err(ar, "failed to send indication registed request: %d\n", ret); ath10k_err(ar, "failed to send indication registered request: %d\n", ret);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment