aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorHarry Wentland <harry.wentland@amd.com>2018-01-16 17:15:25 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-02-19 14:18:44 -0500
commitf3b72c7b00bd36773005e1bfea6b2bb558eb254f (patch)
treeddf46238bdd96ae36648c33d99433a89213ea2c6 /drivers/gpu
parentcf5620562f508c6c949fd05b2e18d80581d3be32 (diff)
drm/amd/display: Fix warning about misaligned code
Signed-off-by: Harry Wentland <harry.wentland@amd.com> Reviewed-by: Charlene Liu <charlene.liu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc_link.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link.c b/drivers/gpu/drm/amd/display/dc/core/dc_link.c
index 420bc2d859eb..0023754e034b 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_link.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_link.c
@@ -2316,8 +2316,8 @@ void core_link_enable_stream(
2316 if (pipe_ctx->stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) 2316 if (pipe_ctx->stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
2317 allocate_mst_payload(pipe_ctx); 2317 allocate_mst_payload(pipe_ctx);
2318 2318
2319 core_dc->hwss.unblank_stream(pipe_ctx, 2319 core_dc->hwss.unblank_stream(pipe_ctx,
2320 &pipe_ctx->stream->sink->link->cur_link_settings); 2320 &pipe_ctx->stream->sink->link->cur_link_settings);
2321} 2321}
2322 2322
2323void core_link_disable_stream(struct pipe_ctx *pipe_ctx, int option) 2323void core_link_disable_stream(struct pipe_ctx *pipe_ctx, int option)