Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/display: remove extra ; from statement, remove extra tabs

There is a statement that has a ;; at the end, remove the extraneous ;
and remove extra tabs in the code block.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Colin Ian King and committed by
Alex Deucher
0e5eaa8d 36a02456

+3 -3
+3 -3
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
··· 1165 1165 link->panel_config.dsc.disable_dsc_edp = true; 1166 1166 1167 1167 if (dc_get_edp_link_panel_inst(ctx->dc, link, &panel_inst) && panel_inst == 1) { 1168 - link->panel_config.psr.disable_psr = true; 1169 - link->panel_config.psr.disallow_psrsu = true;; 1170 - link->panel_config.psr.disallow_replay = true; 1168 + link->panel_config.psr.disable_psr = true; 1169 + link->panel_config.psr.disallow_psrsu = true; 1170 + link->panel_config.psr.disallow_replay = true; 1171 1171 } 1172 1172 } 1173 1173