From: Nicholas Kazlauskas Date: Tue, 24 Jul 2018 13:42:23 +0000 (-0400) Subject: drm/amd/display: Enable DFS bypass support in DC config X-Git-Tag: v5.15~7648^2~27^2~386 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c8faa9aa0cc1ccf02bed608d23966b7347d71a6;p=platform%2Fkernel%2Flinux-starfive.git drm/amd/display: Enable DFS bypass support in DC config [Why] We explicitly disable DFS bypass support when creating DC. Support for this feature should now be in place so it can be left implicitly enabled. [How] Remove the line that disables DFS bypass support. Note: This option was actually reset to false anyway for most of the hardware I've tested on making this particular line misleading in the first place. This patch also fixes this issue. Signed-off-by: Nicholas Kazlauskas Reviewed-by: Harry Wentland Acked-by: Bhawanpreet Lakha Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index 6ae050dc..ebdf820 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -706,8 +706,6 @@ struct dc *dc_create(const struct dc_init_data *init_params) DC_LOG_DC("Display Core initialized\n"); - /* TODO: missing feature to be enabled */ - dc->debug.disable_dfs_bypass = true; return dc;