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

Commit 75bbbc2d authored by Jing Zhou's avatar Jing Zhou Committed by Gerrit - the friendly Code Review server
Browse files

msm: camera: isp: Fix an issue in ispif



The ispif hardware reset in the stramoff() is not correct.
The ispif hardware reset can only be done at the open/close
ispif node. This change is to remove the hardware reset during
the streamoff which causes the issue in the PIP use case.

Change-Id: I5a7428b7ac76c6b360d0a97c07473886170d8e65
Signed-off-by: default avatarJing Zhou <jzhou70@codeaurora.org>
parent aee14e5d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1041,7 +1041,6 @@ static int msm_ispif_stop_immediately(struct ispif_device *ispif,
			cid_mask, params->entries[i].vfe_intf, 0);
	}

	rc = msm_ispif_reset_hw(ispif);
	return rc;
}

@@ -1168,7 +1167,6 @@ static int msm_ispif_stop_frame_boundary(struct ispif_device *ispif,
	}

end:
	rc = msm_ispif_reset_hw(ispif);
	return rc;
}