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

Commit 1c5b9320 authored by Jeyaprakash Soundrapandian's avatar Jeyaprakash Soundrapandian Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: isp: Check for EOF irq before SOF" into dev/msm-4.9-camx

parents b81eb44c 7c800cd4
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -3211,6 +3211,10 @@ int cam_ife_mgr_do_tasklet(void *handler_priv, void *evt_payload_priv)
		return IRQ_HANDLED;
	}

	CAM_DBG(CAM_ISP, "Calling EOF");
	cam_ife_hw_mgr_handle_eof_for_camif_hw_res(ife_hwr_mgr_ctx,
		evt_payload_priv);

	CAM_DBG(CAM_ISP, "Calling SOF");
	/* SOF IRQ */
	cam_ife_hw_mgr_handle_sof(ife_hwr_mgr_ctx,
@@ -3225,8 +3229,6 @@ int cam_ife_mgr_do_tasklet(void *handler_priv, void *evt_payload_priv)
	/* EPOCH IRQ */
	cam_ife_hw_mgr_handle_epoch_for_camif_hw_res(ife_hwr_mgr_ctx,
		evt_payload_priv);
	cam_ife_hw_mgr_handle_eof_for_camif_hw_res(ife_hwr_mgr_ctx,
		evt_payload_priv);

	return IRQ_HANDLED;
}