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

Commit 1475110d authored by Iliya Varadzhakov's avatar Iliya Varadzhakov Committed by Gerrit - the friendly Code Review server
Browse files

msm: isp: Do not check for EOF at request handling



New frame request should not depend on EOF. This event
may come after frame request is received and this
is valid case.

Change-Id: I8bb549d09a68a92ba4c81b1c6d2bea86079584cf
Signed-off-by: default avatarIliya Varadzhakov <ivarad@codeaurora.org>
parent c128d06e
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -3348,9 +3348,7 @@ static int msm_isp_request_frame(struct vfe_device *vfe_dev,
	 */
	if (((frame_src == VFE_PIX_0) && ((frame_id !=
		vfe_dev->axi_data.src_info[VFE_PIX_0].frame_id + vfe_dev->
		axi_data.src_info[VFE_PIX_0].sof_counter_step) ||
		(frame_id <= vfe_dev->
		axi_data.src_info[VFE_PIX_0].eof_id + 1))) ||
		axi_data.src_info[VFE_PIX_0].sof_counter_step))) ||
		((frame_src != VFE_PIX_0) && (frame_id !=
		vfe_dev->axi_data.src_info[frame_src].frame_id + vfe_dev->
		axi_data.src_info[frame_src].sof_counter_step)) ||