drm/amd/display: Remove unused scratch_val_ctx

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Harry Wentland 2017-04-06 16:48:48 -04:00 committed by Alex Deucher
parent 09e2d07f9d
commit 03e4173b44
2 changed files with 0 additions and 4 deletions

View File

@ -411,8 +411,6 @@ static void destruct(struct core_dc *dc)
dc->current_context = NULL;
dm_free(dc->temp_flip_context);
dc->temp_flip_context = NULL;
dm_free(dc->scratch_val_ctx);
dc->scratch_val_ctx = NULL;
dm_free(dc->ctx);
dc->ctx = NULL;
@ -432,7 +430,6 @@ static bool construct(struct core_dc *dc,
dc->current_context = dm_alloc(sizeof(*dc->current_context));
dc->temp_flip_context = dm_alloc(sizeof(*dc->temp_flip_context));
dc->scratch_val_ctx = dm_alloc(sizeof(*dc->scratch_val_ctx));
if (!dc->current_context || !dc->temp_flip_context) {
dm_error("%s: failed to create validate ctx\n", __func__);

View File

@ -23,7 +23,6 @@ struct core_dc {
struct validate_context *current_context;
struct validate_context *temp_flip_context;
struct validate_context *scratch_val_ctx;
struct resource_pool *res_pool;
/* Display Engine Clock levels */