]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/amd/display: Remove unnecessary variable
authorRodrigo Siqueira <rodrigo.siqueira@amd.com>
Mon, 1 May 2023 22:30:54 +0000 (16:30 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 9 Jun 2023 13:39:53 +0000 (09:39 -0400)
There is no need to use dc_version in the dc_construct_ctx since this
value is copied to dc_ctx->dce_version later. This commit removes the
extra steps.

Reviewed-by: Alex Hung <alex.hung@amd.com>
Acked-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Rodrigo Siqueira <rodrigo.siqueira@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.c

index 2c639cd346d78cffc0885a9b6ec19e4e59177727..e664a77d05eb8c7779b3f1dee2d50d87829f8c1c 100644 (file)
@@ -857,7 +857,6 @@ static bool dc_construct_ctx(struct dc *dc,
                const struct dc_init_data *init_params)
 {
        struct dc_context *dc_ctx;
-       enum dce_version dc_version = DCE_VERSION_UNKNOWN;
 
        dc_ctx = kzalloc(sizeof(*dc_ctx), GFP_KERNEL);
        if (!dc_ctx)
@@ -875,8 +874,7 @@ static bool dc_construct_ctx(struct dc *dc,
 
        /* Create logger */
 
-       dc_version = resource_parse_asic_id(init_params->asic_id);
-       dc_ctx->dce_version = dc_version;
+       dc_ctx->dce_version = resource_parse_asic_id(init_params->asic_id);
 
        dc_ctx->perf_trace = dc_perf_trace_create();
        if (!dc_ctx->perf_trace) {