drm/amd/display: remove unnecessary else by CONFIG_DRM_AMD_DC_DCN
authorAlex Hung <alex.hung@amd.com>
Mon, 25 Apr 2022 22:31:49 +0000 (16:31 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 10 May 2022 21:53:13 +0000 (17:53 -0400)
[Why & How]
CONFIG_DRM_AMD_DC_DCN is used by pass the compilation failures, but DC
code should be OS-agnostic.

This patch fixes it by removing unnecessasry CONFIG_DRM_AMD_DC_DCN
guards for #if-#else clause.

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Acked-by: Stylon Wang <stylon.wang@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_resource.c

index f702919a227966d0ea1f3dccd2fa64e879c7df21..6774dd8bb53e10c311019fe31e1762e2175c8d36 100644 (file)
@@ -2315,14 +2315,10 @@ enum dc_status resource_map_pool_resources(
 
        /* Add ABM to the resource if on EDP */
        if (pipe_ctx->stream && dc_is_embedded_signal(pipe_ctx->stream->signal)) {
-#if defined(CONFIG_DRM_AMD_DC_DCN)
                if (pool->abm)
                        pipe_ctx->stream_res.abm = pool->abm;
                else
                        pipe_ctx->stream_res.abm = pool->multiple_abms[pipe_ctx->stream_res.tg->inst];
-#else
-               pipe_ctx->stream_res.abm = pool->abm;
-#endif
        }
 
        for (i = 0; i < context->stream_count; i++)