Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae366eae authored by Ashok Vuyyuru's avatar Ashok Vuyyuru
Browse files

msm: ipa3: Fix to unlock mutex before return



Adding changes to unlock mutex before return from QMI
send request.

Change-Id: I39c32219db69fbc41b30507759bed16acb976005
Signed-off-by: default avatarAshok Vuyyuru <avuyyuru@codeaurora.org>
parent a0e406a6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -484,8 +484,11 @@ static int ipa3_qmi_send_req_wait(struct qmi_handle *client_handle,
		req_desc->ei_array,
		req);

	if (unlikely(!ipa_q6_clnt))
	if (unlikely(!ipa_q6_clnt)) {
		mutex_unlock(&ipa3_qmi_lock);
		return -EINVAL;
	}

	mutex_unlock(&ipa3_qmi_lock);

	if (ret < 0) {