From: Leo Chen Date: Sat, 10 Dec 2022 00:08:54 +0000 (-0500) Subject: drm/amd/display: Adding braces to prepare for future changes to behavior of if block X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b0fcf88b3f10bf684d636e78113e678dc3b3f053;p=linux.git drm/amd/display: Adding braces to prepare for future changes to behavior of if block [Why & How] For certain features, there will be more implementations needed in the if-block. Braces are added as part of the preparation. Acked-by: Aurabindo Pillai Signed-off-by: Leo Chen Reviewed-by: Charlene Liu Tested-by: Daniel Wheeler 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 f41933845d2a1..dbf90ca0cf980 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -2008,8 +2008,9 @@ bool dc_commit_state(struct dc *dc, struct dc_state *context) return result == DC_OK; } - if (!streams_changed(dc, context->streams, context->stream_count)) + if (!streams_changed(dc, context->streams, context->stream_count)) { return DC_OK; + } DC_LOG_DC("%s: %d streams\n", __func__, context->stream_count);