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

Commit 9f775d87 authored by Bojun Pan's avatar Bojun Pan
Browse files

msm: IPA: mhi_proxy: correct the return for mhi unvote on ssr



When 4G ssr happens, imp will unregister the mhi. And if the devote
request from Q6 we would need to ignore it. The current handling is
to just ignore this QMI request but if Q6 shutdown is not happen on
time there would be a QMI assert happen on Q6 side. The fix here is
to still response to QMI with error imcompatiable.

Change-Id: I51637181a428a96fcd4385bcb1573acbff808813
Signed-off-by: default avatarBojun Pan <bojunp@codeaurora.org>
parent ed73c2e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -625,7 +625,7 @@ struct ipa_mhi_clk_vote_resp_msg_v01
	if (!vote && imp_ctx->state == IMP_INVALID) {
		IMP_DBG("Unvote in Invalid state, no op for clock unvote\n");
		mutex_unlock(&imp_ctx->mutex);
		return 0;
		return resp;
	}

	if (imp_ctx->state != IMP_STARTED) {
+1 −1
Original line number Diff line number Diff line
@@ -400,7 +400,7 @@ static void ipa3_handle_mhi_vote_req(struct qmi_handle *qmi_handle,
	} else {
		resp = imp_handle_vote_req(vote_req->mhi_vote);
		if (!resp) {
			IPAWANERR("imp handle allocate channel req fails");
			IPAWANERR("imp handle vote req fails\n");
			return;
		}
		IPAWANDBG("start sending QMI_IPA_MHI_CLK_VOTE_RESP_V01\n");