From 803a1412fe373e6fa9f20b4eba0827dd9c614a57 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ernst=20Sj=C3=B6strand?= Date: Mon, 24 Jun 2019 17:15:43 +0200 Subject: [PATCH] drm/amd/amdgpu: Fix style issues in dcn20_resource.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Inconsistent indentation and mixed use of brackets. Signed-off-by: Ernst Sjöstrand Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c b/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c index a8ba7d15abbb..fb8aff7360ec 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c @@ -2889,15 +2889,15 @@ static bool construct( dc->caps.force_dp_tps4_for_cp2520 = true; dc->caps.hw_3d_lut = true; - if (dc->ctx->dce_environment == DCE_ENV_PRODUCTION_DRV) + if (dc->ctx->dce_environment == DCE_ENV_PRODUCTION_DRV) { dc->debug = debug_defaults_drv; - else if (dc->ctx->dce_environment == DCE_ENV_FPGA_MAXIMUS) { - pool->base.pipe_count = 4; - + } else if (dc->ctx->dce_environment == DCE_ENV_FPGA_MAXIMUS) { + pool->base.pipe_count = 4; pool->base.mpcc_count = pool->base.pipe_count; dc->debug = debug_defaults_diags; - } else + } else { dc->debug = debug_defaults_diags; + } //dcn2.0x dc->work_arounds.dedcn20_305_wa = true; -- 2.20.1