diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2013-05-31 16:17:08 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-06-11 02:35:51 +0400 |
commit | 9bc3cd5673d84d29272fa7181a4dfca83cbb48c1 (patch) | |
tree | cfe55d25141ebe5f287c752fca2467b546d99de6 /drivers/gpu/drm/drm_crtc_helper.c | |
parent | 990256aec2f10800595dddf4d1c3441fcd6b2616 (diff) | |
download | linux-9bc3cd5673d84d29272fa7181a4dfca83cbb48c1.tar.xz |
drm: Sort connector modes based on vrefresh
Keeping the modes sorted by vrefresh before the pixel clock makes the
mode list somehow more pleasing to the eye.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc_helper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index ed1334e27c33..f554516ec2a4 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -189,13 +189,14 @@ prune: if (list_empty(&connector->modes)) return 0; + list_for_each_entry(mode, &connector->modes, head) + mode->vrefresh = drm_mode_vrefresh(mode); + drm_mode_sort(&connector->modes); DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id, drm_get_connector_name(connector)); list_for_each_entry(mode, &connector->modes, head) { - mode->vrefresh = drm_mode_vrefresh(mode); - drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V); drm_mode_debug_printmodeline(mode); } |