summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
diff options
context:
space:
mode:
authorBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>2017-08-28 12:04:23 -0400
committerAlex Deucher <alexander.deucher@amd.com>2017-09-26 18:17:14 -0400
commitf36cc577c3254738e370b553f9f8cedf2df84070 (patch)
tree93c3e36262755a1ef5911338da8b45f1fb3e4c3e /drivers/gpu/drm/amd/display/dc/core/dc_resource.c
parent608ac7bb3924178d7bfa8b88d79d3d9d72b8f485 (diff)
drm/amd/display: Rename dc resource_validate_ctx methods
Rename dc_resource methods from validate_ctx to state Signed-off-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/core/dc_resource.c')
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc_resource.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
index 727afeaa3830..d284d9d40e2b 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
@@ -1707,11 +1707,11 @@ void validate_guaranteed_copy_streams(
}
}
-void dc_resource_validate_ctx_copy_construct_current(
+void dc_resource_state_copy_construct_current(
const struct dc *dc,
struct dc_state *dst_ctx)
{
- dc_resource_validate_ctx_copy_construct(dc->current_state, dst_ctx);
+ dc_resource_state_copy_construct(dc->current_state, dst_ctx);
}
bool dc_validate_global_state(
@@ -2413,7 +2413,7 @@ static void set_vsc_info_packet(
/*TODO: stereo 3D support and extend pixel encoding colorimetry*/
}
-void dc_resource_validate_ctx_destruct(struct dc_state *context)
+void dc_resource_state_destruct(struct dc_state *context)
{
int i, j;
@@ -2432,7 +2432,7 @@ void dc_resource_validate_ctx_destruct(struct dc_state *context)
* Copy src_ctx into dst_ctx and retain all surfaces and streams referenced
* by the src_ctx
*/
-void dc_resource_validate_ctx_copy_construct(
+void dc_resource_state_copy_construct(
const struct dc_state *src_ctx,
struct dc_state *dst_ctx)
{