diff --git a/drivers/cam_isp/cam_isp_context.c b/drivers/cam_isp/cam_isp_context.c index 34afea0e90..b6cd221e06 100644 --- a/drivers/cam_isp/cam_isp_context.c +++ b/drivers/cam_isp/cam_isp_context.c @@ -837,7 +837,7 @@ static int __cam_isp_ctx_notify_v4l2_error_event( if (rc) CAM_ERR(CAM_ISP, "Notifying v4l2 error [type: %u code: %u] failed for req id:%llu in ctx %u on link: 0x%x", - error_request_id, ctx->ctx_id); + error_type, error_code, error_request_id, ctx->ctx_id, ctx->link_hdl); return rc; } @@ -8486,8 +8486,8 @@ static int cam_isp_context_validate_event_notify_injection(struct cam_context *c if (!non_fatal_en) { CAM_ERR(CAM_ISP, - "Fail to inject pagefault event notif. Pagefault fatal for ISP,ctx:%u link:0x%x", - ctx->ctx_id, ctx->link_hdl); + "Fail to inject pagefault event notif. Pagefault fatal for ISP,ctx:%u link:0x%x", + ctx->ctx_id, ctx->link_hdl); return -EINVAL; } diff --git a/drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c b/drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c index 3dd39bf94b..b2eb9550b5 100644 --- a/drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c +++ b/drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c @@ -13614,7 +13614,7 @@ static int cam_ife_hw_mgr_find_affected_ctx( if (notify_err_cb) notify_err_cb(ife_hwr_mgr_ctx->common.cb_priv, CAM_ISP_HW_EVENT_ERROR, - (void *)error_event_data); + (void *)error_event_data); else { CAM_WARN(CAM_ISP, "Error call back is not set, ctx_idx: %u", ife_hwr_mgr_ctx->ctx_index); @@ -13626,7 +13626,7 @@ static int cam_ife_hw_mgr_find_affected_ctx( for (i = 0; i < CAM_IFE_HW_NUM_MAX; i++) { recovery_data->affected_core[i] = affected_core[i]; CAM_DBG(CAM_ISP, "Vfe core %d is affected (%d)", - i, recovery_data->affected_core[i]); + i, recovery_data->affected_core[i]); } end: return 0; diff --git a/drivers/cam_isp/isp_hw_mgr/isp_hw/ife_csid_hw/cam_ife_csid_hw_ver2.c b/drivers/cam_isp/isp_hw_mgr/isp_hw/ife_csid_hw/cam_ife_csid_hw_ver2.c index 9240009edf..85aff2cb86 100644 --- a/drivers/cam_isp/isp_hw_mgr/isp_hw/ife_csid_hw/cam_ife_csid_hw_ver2.c +++ b/drivers/cam_isp/isp_hw_mgr/isp_hw/ife_csid_hw/cam_ife_csid_hw_ver2.c @@ -1743,7 +1743,7 @@ static int cam_ife_csid_ver2_parse_path_irq_status( uint8_t *log_buf = NULL; csid_reg = (struct cam_ife_csid_ver2_reg_info *) - csid_hw->core_info->csid_reg; + csid_hw->core_info->csid_reg; log_buf = csid_hw->log_buf; @@ -2126,7 +2126,7 @@ static int cam_ife_csid_ver2_ppp_bottom_half( irq_status_ppp = payload->irq_reg_val; csid_reg = (struct cam_ife_csid_ver2_reg_info *) - csid_hw->core_info->csid_reg; + csid_hw->core_info->csid_reg; path_reg = csid_reg->path_reg[res->res_id]; err_mask = path_reg->fatal_err_mask | path_reg->non_fatal_err_mask; diff --git a/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c b/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c index a68f27838b..ac2cca324f 100644 --- a/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c +++ b/drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c @@ -556,10 +556,10 @@ static int cam_vfe_top_ver4_print_overflow_debug_info( soc_info = top_priv->top_common.soc_info; soc_private = soc_info->soc_private; - bus_overflow_status = cam_io_r(soc_info->reg_map[VFE_CORE_BASE_IDX].mem_base + - common_data->common_reg->bus_overflow_status); + bus_overflow_status = cam_io_r(soc_info->reg_map[VFE_CORE_BASE_IDX].mem_base + + common_data->common_reg->bus_overflow_status); violation_status = cam_io_r(soc_info->reg_map[VFE_CORE_BASE_IDX].mem_base + - common_data->common_reg->bus_violation_status); + common_data->common_reg->bus_violation_status); if (soc_private->is_ife_lite) CAM_ERR(CAM_ISP, diff --git a/drivers/cam_sensor_module/cam_tpg/cam_tpg_core.c b/drivers/cam_sensor_module/cam_tpg/cam_tpg_core.c index 656d77f295..f7eda0012c 100644 --- a/drivers/cam_sensor_module/cam_tpg/cam_tpg_core.c +++ b/drivers/cam_sensor_module/cam_tpg/cam_tpg_core.c @@ -118,7 +118,7 @@ static int cam_tpg_apply_req( apply->request_id); mutex_lock(&tpg_dev->mutex); tpg_hw_apply(&tpg_dev->tpg_hw, - apply->request_id); + apply->request_id); mutex_unlock(&tpg_dev->mutex); return 0; diff --git a/drivers/cam_sync/cam_sync.c b/drivers/cam_sync/cam_sync.c index 0e9815e876..70fd07eb95 100644 --- a/drivers/cam_sync/cam_sync.c +++ b/drivers/cam_sync/cam_sync.c @@ -1443,7 +1443,7 @@ int cam_sync_synx_core_recovery( int rc = -EOPNOTSUPP; #if IS_ENABLED(CONFIG_TARGET_SYNX_ENABLE) - rc = cam_synx_core_recovery(core_id); + rc = cam_synx_core_recovery(core_id); #endif return rc;