aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2016-09-28 09:51:36 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2016-10-04 02:23:09 -0400
commitab5603c4d334224e3a884e62e7083ec69849fa7a (patch)
treed6ca3aff90ec5dca66492a50921a7c0c418a137f /include/drm
parent75d7e542bd3669a7ce41b713be8d3fd71e0ed2fa (diff)
drm/edid: Make max_tmds_clock kHz instead of MHz
We generally store clocks in kHz, so let's do that for the HDMI max TMDS clock value as well. Less surpising. v2: Deal with superfluous code shuffling Cc: Alex Deucher <alexander.deucher@amd.com> Cc: "Christian König" <christian.koenig@amd.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Christian König <christian.koenig@amd.com> (v1) Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1475070703-6435-4-git-send-email-ville.syrjala@linux.intel.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_connector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index 51a15deda161..5928cb74a06d 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -651,7 +651,7 @@ struct drm_connector {
651 /* EDID bits */ 651 /* EDID bits */
652 uint8_t eld[MAX_ELD_BYTES]; 652 uint8_t eld[MAX_ELD_BYTES];
653 bool dvi_dual; 653 bool dvi_dual;
654 int max_tmds_clock; /* in MHz */ 654 int max_tmds_clock; /* in kHz */
655 bool latency_present[2]; 655 bool latency_present[2];
656 int video_latency[2]; /* [0]: progressive, [1]: interlaced */ 656 int video_latency[2]; /* [0]: progressive, [1]: interlaced */
657 int audio_latency[2]; 657 int audio_latency[2];