From ffa121419257d72ea520bf31e15d12effb50c039 Mon Sep 17 00:00:00 2001 From: Sung Lee Date: Fri, 21 Feb 2020 14:50:55 -0500 Subject: [PATCH] drm/amd/display: Set clock optimization required after update clocks [WHY] We see an issue that caused clk_optimized_required to be set true in certain cases, causing passive flips to fail. This is because of a typo where wm_optimized_required was set twice. [HOW] Set clk_optimized_required to false after updating clocks. Signed-off-by: Sung Lee Reviewed-by: Tony Cheng Acked-by: Rodrigo Siqueira Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c b/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c index 49f5af9e30165..045ba08c85b4f 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c +++ b/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c @@ -1674,7 +1674,7 @@ void dcn20_optimize_bandwidth( dc->clk_mgr, context, true); - dc->wm_optimized_required = false; + dc->clk_optimized_required = false; } } -- 2.39.5