瀏覽代碼

msm: camera: isp: Change log from warn to DBG

Change stride alignment warning to debug to avoid
excessive logging.

CRs-Fixed: 2987164
Change-Id: Ib16820f6a9deb76084be94705b09b0627e613446
Signed-off-by: Karthik Anantha Ram <[email protected]>
Karthik Anantha Ram 4 年之前
父節點
當前提交
ba2400d195

+ 1 - 1
drivers/cam_isp/isp_hw_mgr/isp_hw/sfe_hw/sfe_bus/cam_sfe_bus_wr.c

@@ -2202,7 +2202,7 @@ skip_cache_cfg:
 		CAM_DBG(CAM_SFE, "before stride %d", val);
 		val = ALIGNUP(val, 16);
 		if (val != stride)
-			CAM_WARN(CAM_SFE, "Warning stride %u expected %u",
+			CAM_DBG(CAM_SFE, "Warning stride %u expected %u",
 				stride, val);
 
 		if (wm_data->stride != val || !wm_data->init_cfg_done) {

+ 1 - 1
drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_bus/cam_vfe_bus_ver3.c

@@ -3093,7 +3093,7 @@ static int cam_vfe_bus_ver3_update_wm(void *priv, void *cmd_args,
 		CAM_DBG(CAM_ISP, "before stride %d", val);
 		val = ALIGNUP(val, 16);
 		if (val != io_cfg->planes[i].plane_stride)
-			CAM_WARN(CAM_ISP, "Warning stride %u expected %u",
+			CAM_DBG(CAM_ISP, "Warning stride %u expected %u",
 				io_cfg->planes[i].plane_stride, val);
 
 		if (wm_data->stride != val || !wm_data->init_cfg_done) {