Commit bf02db99 authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter

drm: Handle the DBLCLK flag in the common infoframe helper

Suggested-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Acked-by: default avatarDave Airlie <airlied@gmail.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent c5022bb9
...@@ -3102,6 +3102,9 @@ drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame, ...@@ -3102,6 +3102,9 @@ drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame,
if (err < 0) if (err < 0)
return err; return err;
if (mode->flags & DRM_MODE_FLAG_DBLCLK)
frame->pixel_repeat = 1;
frame->video_code = drm_match_cea_mode(mode); frame->video_code = drm_match_cea_mode(mode);
if (!frame->video_code) if (!frame->video_code)
return 0; return 0;
......
...@@ -364,9 +364,6 @@ static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder, ...@@ -364,9 +364,6 @@ static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
return; return;
} }
if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
frame.avi.pixel_repeat = 1;
if (intel_hdmi->rgb_quant_range_selectable) { if (intel_hdmi->rgb_quant_range_selectable) {
if (intel_crtc->config.limited_color_range) if (intel_crtc->config.limited_color_range)
frame.avi.quantization_range = frame.avi.quantization_range =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment