Ver Fonte

msm: camera: ife: Always send stop immediately when stopping hw

As the name implies, we stop the HW sooner, so prefer it over
"stop at frame boundary".

CRs-Fixed: 2724889
Change-Id: I7fa353c09dbe733e57f099893edc0e7f7fa18e7a
Signed-off-by: Fernando Pacheco <[email protected]>
Fernando Pacheco há 4 anos atrás
pai
commit
46812a7030
1 ficheiros alterados com 2 adições e 6 exclusões
  1. 2 6
      drivers/cam_isp/cam_isp_context.c

+ 2 - 6
drivers/cam_isp/cam_isp_context.c

@@ -5028,13 +5028,9 @@ static int __cam_isp_ctx_stop_dev_in_activated_unlock(
 	if (ctx_isp->hw_ctx) {
 		stop.ctxt_to_hw_map = ctx_isp->hw_ctx;
 
-		if (stop_cmd)
-			stop_isp.hw_stop_cmd =
-				CAM_ISP_HW_STOP_AT_FRAME_BOUNDARY;
-		else
-			stop_isp.hw_stop_cmd = CAM_ISP_HW_STOP_IMMEDIATELY;
-
+		stop_isp.hw_stop_cmd = CAM_ISP_HW_STOP_IMMEDIATELY;
 		stop_isp.stop_only = false;
+
 		stop.args = (void *) &stop_isp;
 		ctx->hw_mgr_intf->hw_stop(ctx->hw_mgr_intf->hw_mgr_priv,
 			&stop);