Message ID | 1558962917-29104-1-git-send-email-akolli@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 7e971d50571b94ba57b720be5677d08a758f7440 |
Delegated to: | Kalle Valo |
Headers | show |
Series | ath11k: fix qmi cfg send message fail | expand |
Anilkumar Kolli <akolli@codeaurora.org> wrote: > Fix ath11k qmi fail issue, > ath11k c000000.wifi1: qmi wlan config request failed, result: 1, err: 48 > > Fixes: 1e3e4fdc27c6 ("ath11k: qmi: fix frame size warnings") > Signed-off-by: Anilkumar Kolli <akolli@codeaurora.org> Patch applied to ath.git, thanks. 7e971d50571b ath11k: fix qmi cfg send message fail
diff --git a/drivers/net/wireless/ath/ath11k/qmi.c b/drivers/net/wireless/ath/ath11k/qmi.c index cd1f5bc614fd..f31c21302e29 100644 --- a/drivers/net/wireless/ath/ath11k/qmi.c +++ b/drivers/net/wireless/ath/ath11k/qmi.c @@ -2068,7 +2068,7 @@ static int ath11k_qmi_wlanfw_wlan_cfg_send(struct ath11k_base *ab) ret = qmi_send_request(&ab->qmi.handle, NULL, &txn, QMI_WLANFW_WLAN_CFG_REQ_V01, QMI_WLANFW_WLAN_CFG_REQ_MSG_V01_MAX_LEN, - qmi_wlanfw_wlan_cfg_req_msg_v01_ei, &req); + qmi_wlanfw_wlan_cfg_req_msg_v01_ei, req); if (ret < 0) { ath11k_warn(ab, "qmi failed to send wlan config request, err = %d\n", ret);
Fix ath11k qmi fail issue, ath11k c000000.wifi1: qmi wlan config request failed, result: 1, err: 48 Fixes: 1e3e4fdc27c6 ("ath11k: qmi: fix frame size warnings") Signed-off-by: Anilkumar Kolli <akolli@codeaurora.org> --- drivers/net/wireless/ath/ath11k/qmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)