]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/amd/display: Remove unused dc_validate_guaranteed function
authorHarry Wentland <harry.wentland@amd.com>
Sun, 24 Sep 2017 18:31:51 +0000 (14:31 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:17:44 +0000 (18:17 -0400)
It got refactored away and was never cleaned.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc.c

index 75a5fa2296d7ef127d6cdaa1c17812fef0264de9..58c5083bef2a36eda3b775f13c24d5c1a579c273 100644 (file)
@@ -651,40 +651,6 @@ void dc_destroy(struct dc **dc)
        *dc = NULL;
 }
 
-bool dc_validate_guaranteed(
-               struct dc *dc,
-               struct dc_stream_state *stream)
-{
-       enum dc_status result = DC_ERROR_UNEXPECTED;
-       struct dc_state *context;
-
-       if (!dc_validate_stream(dc, stream))
-               return false;
-
-       context = dm_alloc(sizeof(struct dc_state));
-       if (context == NULL)
-               goto context_alloc_fail;
-
-       dc_resource_state_construct(dc, dc->current_state);
-
-       atomic_inc(&context->ref_count);
-
-       result = dc->res_pool->funcs->validate_guaranteed(
-                                       dc, stream, context);
-
-       dc_release_state(context);
-
-context_alloc_fail:
-       if (result != DC_OK) {
-               dm_logger_write(dc->ctx->logger, LOG_WARNING,
-                       "%s:guaranteed validation failed, dc_status:%d\n",
-                       __func__,
-                       result);
-               }
-
-       return (result == DC_OK);
-}
-
 static void program_timing_sync(
                struct dc *dc,
                struct dc_state *ctx)