From 70550a00c584612eacc405a852e1ccea59964f48 Mon Sep 17 00:00:00 2001 From: Karthik Jayakumar Date: Tue, 26 Jan 2021 11:31:38 -0800 Subject: [PATCH] msm: camera: ife: Fix variable assignment indentation Fix clang warning about improper indentation level of a variable assignment following a one-line if statement. CRs-Fixed: 2835738 Change-Id: If31d282044ddffc668b1b59b105edd4d5ce4aee7 Signed-off-by: Karthik Jayakumar --- drivers/cam_isp/isp_hw_mgr/cam_ife_hw_mgr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 7e6990b9b4..2cc2d1293a 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 @@ -8499,9 +8499,8 @@ static int cam_isp_sfe_add_scratch_buffer_cfg( ctx->scratch_config.curr_num_exp)) continue; - cpu_addr = kmd_buf_info->cpu_addr + - kmd_buf_info->used_bytes / 4 + - io_cfg_used_bytes / 4; + cpu_addr = kmd_buf_info->cpu_addr + + kmd_buf_info->used_bytes / 4 + io_cfg_used_bytes / 4; buf_info = &ctx->scratch_config.buf_info[ res_id - CAM_ISP_SFE_OUT_RES_RDI_0];