From 898869cd11640dab946477452be8470b3fda9cdb Mon Sep 17 00:00:00 2001 From: Venkat Chinta Date: Wed, 16 Oct 2019 13:41:25 -0700 Subject: [PATCH] msm: camera: ife: Remove line start addition This change removes line start addition to epoch line config. After CSID crop is applied, the first line that CAMIF receives is already at the required line and therefore number of lines for epoch should just be half of the frame width. CRs-Fixed: 2546941 Change-Id: Ib12b1fc96cedf140672af03862aaf4be65ab38d8 Signed-off-by: Venkat Chinta --- .../isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_camif_ver3.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_camif_ver3.c b/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_camif_ver3.c index 8e5a30588c52a..12cdcb19f2c07 100644 --- a/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_camif_ver3.c +++ b/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_camif_ver3.c @@ -425,9 +425,8 @@ static int cam_vfe_camif_ver3_resource_start( /* epoch config */ switch (soc_private->cpas_version) { case CAM_CPAS_TITAN_480_V100: - epoch0_line_cfg = ((rsrc_data->last_line - - rsrc_data->first_line) / 4) + - rsrc_data->first_line; + epoch0_line_cfg = (rsrc_data->last_line - + rsrc_data->first_line) / 4; /* epoch line cfg will still be configured at midpoint of the * frame width. We use '/ 4' instead of '/ 2' * cause it is multipixel path