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

Commit f3952f71 authored by Bojun Pan's avatar Bojun Pan Committed by Gerrit - the friendly Code Review server
Browse files

msm: IPA: mhi_proxy: correct the mhi vote for both bus and device



There is a recent MHI API change to add flexibility to do either
bus and device, but the change were applied to cv2 target
mistakenly and get exposed due to Android Q update.
The fix here is to correct the mhi vote for both bus/device.

Change-Id: I9803d1aeb80952c33503d0fd7adb343a22cf6d4b
Signed-off-by: default avatarBojun Pan <bojunp@codeaurora.org>
parent cc109077
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -641,7 +641,8 @@ struct ipa_mhi_clk_vote_resp_msg_v01
	 * executed from mhi context.
	 */
	if (vote) {
		ret = mhi_device_get_sync(imp_ctx->md.mhi_dev, MHI_VOTE_BUS);
		ret = mhi_device_get_sync(imp_ctx->md.mhi_dev,
			MHI_VOTE_BUS | MHI_VOTE_DEVICE);
		if (ret) {
			IMP_ERR("mhi_sync_get failed %d\n", ret);
			resp->resp.result = IPA_QMI_RESULT_FAILURE_V01;
@@ -651,7 +652,8 @@ struct ipa_mhi_clk_vote_resp_msg_v01
			return resp;
		}
	} else {
		mhi_device_put(imp_ctx->md.mhi_dev, MHI_VOTE_BUS);
		mhi_device_put(imp_ctx->md.mhi_dev,
			MHI_VOTE_BUS | MHI_VOTE_DEVICE);
	}

	mutex_lock(&imp_ctx->mutex);