From: Ville Syrjälä Date: Tue, 8 May 2018 11:09:37 +0000 (+0530) Subject: drm/edid: Use drm_mode_match_no_clocks_no_stereo() for consistentcy X-Git-Tag: Ubuntu-5.10.0-12.13~7717^2~14^2~12 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=a2328fd657017557606264c61074e609adfbb3ce;p=mirror_ubuntu-hirsute-kernel.git drm/edid: Use drm_mode_match_no_clocks_no_stereo() for consistentcy Use drm_mode_equal_no_clocks_no_stereo() in drm_match_hdmi_mode_clock_tolerance() for consistency as we also use it in drm_match_hdmi_mode() and the cea mode matching functions. This doesn't actually change anything since the input mode comes from detailed timings and we match it against edid_4k_modes[] which. So none of those modes can have stereo flags set. Signed-off-by: Ville Syrjälä Reviewed-by: Shashank Sharma Signed-off-by: Maarten Lankhorst Link: https://patchwork.freedesktop.org/patch/msgid/1525777785-9740-3-git-send-email-ankit.k.nautiyal@intel.com --- diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 61dd9a2fbe5b..aa70da86ef2c 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c @@ -3047,7 +3047,7 @@ static u8 drm_match_hdmi_mode_clock_tolerance(const struct drm_display_mode *to_ abs(to_match->clock - clock2) > clock_tolerance) continue; - if (drm_mode_equal_no_clocks(to_match, hdmi_mode)) + if (drm_mode_equal_no_clocks_no_stereo(to_match, hdmi_mode)) return vic; }