Commit 03e4173b authored by Harry Wentland's avatar Harry Wentland Committed by Alex Deucher
Browse files

drm/amd/display: Remove unused scratch_val_ctx

parent 09e2d07f
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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__);
+0 −1
Original line number Diff line number Diff line
@@ -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 */