drm/amd/display: Unneeded semicolon
authormin tang <tangmin@cdjrlc.com>
Sat, 13 Aug 2022 15:34:21 +0000 (23:34 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 16 Aug 2022 22:17:31 +0000 (18:17 -0400)
There is no semicolon after '}' in line 510.

Signed-off-by: min tang <tangmin@cdjrlc.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c

index cc07662..bff0f57 100644 (file)
@@ -507,7 +507,7 @@ static void dcn315_clk_mgr_helper_populate_bw_params(
                bw_params->clk_table.entries[i].dispclk_mhz = clock_table->DispClocks[i];
                bw_params->clk_table.entries[i].dppclk_mhz = clock_table->DppClocks[i];
                bw_params->clk_table.entries[i].wck_ratio = 1;
-       };
+       }
 
        /* Make sure to include at least one entry and highest pstate */
        if (max_pstate != min_pstate || i == 0) {