Procházet zdrojové kódy

msm: camera: isp: Fix the log print issue

The integer variable can't be print with %s.

CRs-Fixed: 3241910
Change-Id: I1ce84e535ec7fd5f1060fc8a0f646558bd0c08a1
Signed-off-by: Depeng Shao <[email protected]>
Depeng Shao před 3 roky
rodič
revize
e3e48ebd35
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c

+ 1 - 1
drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c

@@ -8925,7 +8925,7 @@ static int cam_ife_hw_mgr_update_scratch_offset(
 	port_info = &ctx->scratch_buf_info.sfe_scratch_config->buf_info[res_id];
 	port_info->offset = wm_config->offset;
 
-	CAM_DBG(CAM_ISP, "Scratch addr: 0x%x offset: %u updated for: %s",
+	CAM_DBG(CAM_ISP, "Scratch addr: 0x%x offset: %u updated for: 0x%x",
 		port_info->io_addr, port_info->offset, wm_config->port_type);
 
 	return 0;