summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/core/dc_link.c
diff options
context:
space:
mode:
authorJinZe.Xu <JinZe.Xu@amd.com>2020-07-21 17:52:41 +0800
committerAlex Deucher <alexander.deucher@amd.com>2022-06-21 18:17:23 -0400
commit98dd398aa3e021896adb7f2b1d0f6b2d3784610c (patch)
tree7716a35fb96e8d91bd94c6893002805015ce04fb /drivers/gpu/drm/amd/display/dc/core/dc_link.c
parentf173fbe5b042e1c87593e3b06e85cae0094dd867 (diff)
downloadlinux-98dd398aa3e021896adb7f2b1d0f6b2d3784610c.tar.bz2
drm/amd/display: Change HDMI judgement condition.
[Why & How] Use dc_is_hdmi_signal to determine signal type. Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Acked-by: Alan Liu <HaoPing.Liu@amd.com> Signed-off-by: JinZe.Xu <JinZe.Xu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/core/dc_link.c')
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc_link.c2
1 files changed, 1 insertions, 1 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 82b74ee5f0c3..fb6ffcb0bc6b 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_link.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_link.c
@@ -4374,7 +4374,7 @@ void core_link_enable_stream(
dp_set_dsc_enable(pipe_ctx, true);
}
- if (pipe_ctx->stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
+ if (dc_is_hdmi_signal(pipe_ctx->stream->signal)) {
core_link_set_avmute(pipe_ctx, false);
}
}