drm/amd/display: remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 18 Aug 2022 02:59:12 +0000 (10:59 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 22 Aug 2022 20:47:09 +0000 (16:47 -0400)
Semicolon is not required after curly braces.

Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=1918
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/clk_mgr/dcn314/dcn314_clk_mgr.c

index beb025c..1995e1d 100644 (file)
@@ -614,7 +614,7 @@ static void dcn314_clk_mgr_helper_populate_bw_params(struct clk_mgr_internal *cl
                bw_params->clk_table.entries[i].dppclk_mhz = max_dppclk;
                bw_params->clk_table.entries[i].wck_ratio = convert_wck_ratio(
                        clock_table->DfPstateTable[min_pstate].WckRatio);
-       };
+       }
 
        /* Make sure to include at least one entry at highest pstate */
        if (max_pstate != min_pstate || i == 0) {