drm/amd/display: Clean up some inconsistent indenting
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Tue, 26 Jul 2022 07:25:53 +0000 (15:25 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 28 Jul 2022 20:05:16 +0000 (16:05 -0400)
No functional modification involved.

smatch warnings:

drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn303/dcn303_fpu.c:205 dcn303_fpu_update_bw_bounding_box() warn: inconsistent indenting.
drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn303/dcn303_fpu.c:355 dcn303_fpu_init_soc_bounding_box() warn: inconsistent indenting.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml/dcn303/dcn303_fpu.c

index 8fb14baed208bc4eb4e193676fd32e15f6fb4298..3eb3a021ab7d72f672b0029d333e32f4f58af559 100644 (file)
@@ -202,7 +202,7 @@ void dcn303_fpu_update_bw_bounding_box(struct dc *dc, struct clk_bw_params *bw_p
        unsigned int num_dcfclk_sta_targets = 4;
        unsigned int num_uclk_states;
 
-    dc_assert_fp_enabled();
+       dc_assert_fp_enabled();
 
        if (dc->ctx->dc_bios->vram_info.num_chans)
                dcn3_03_soc.num_chans = dc->ctx->dc_bios->vram_info.num_chans;
@@ -349,14 +349,11 @@ void dcn303_fpu_init_soc_bounding_box(struct bp_soc_bb_info bb_info)
        dc_assert_fp_enabled();
 
        if (bb_info.dram_clock_change_latency_100ns > 0)
-                               dcn3_03_soc.dram_clock_change_latency_us =
-                                       bb_info.dram_clock_change_latency_100ns * 10;
+               dcn3_03_soc.dram_clock_change_latency_us = bb_info.dram_clock_change_latency_100ns * 10;
 
-                       if (bb_info.dram_sr_enter_exit_latency_100ns > 0)
-                               dcn3_03_soc.sr_enter_plus_exit_time_us =
-                                       bb_info.dram_sr_enter_exit_latency_100ns * 10;
+       if (bb_info.dram_sr_enter_exit_latency_100ns > 0)
+               dcn3_03_soc.sr_enter_plus_exit_time_us = bb_info.dram_sr_enter_exit_latency_100ns * 10;
 
-                       if (bb_info.dram_sr_exit_latency_100ns > 0)
-                               dcn3_03_soc.sr_exit_time_us =
-                                       bb_info.dram_sr_exit_latency_100ns * 10;
+       if (bb_info.dram_sr_exit_latency_100ns > 0)
+               dcn3_03_soc.sr_exit_time_us = bb_info.dram_sr_exit_latency_100ns * 10;
 }