summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHarry Wentland <harry.wentland@amd.com>2017-02-16 10:37:00 -0500
committerAlex Deucher <alexander.deucher@amd.com>2017-09-26 17:16:58 -0400
commit67a277055b98e998c34d311cc956f809a0f92504 (patch)
tree625199a3c9bb358f876227c1a8d18ef24b124d25 /drivers
parentf0828115efa0406fbe0010b1d8c9c965fc718733 (diff)
downloadlinux-67a277055b98e998c34d311cc956f809a0f92504.tar.bz2
drm/amd/display: We don't support interlace and doublescan
Don't tell DRM otherwise. Signed-off-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c
index 862bbd745bb9..008c7a55e992 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c
@@ -1851,8 +1851,9 @@ void amdgpu_dm_connector_init_helper(
aconnector->connector_id = link_index;
aconnector->dc_link = link;
- aconnector->base.interlace_allowed = true;
- aconnector->base.doublescan_allowed = true;
+ aconnector->base.interlace_allowed = false;
+ aconnector->base.doublescan_allowed = false;
+ aconnector->base.stereo_allowed = false;
aconnector->base.dpms = DRM_MODE_DPMS_OFF;
aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */