Commit 990256ae authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Dave Airlie

drm: Add probed modes in probe order

Keeping the modes in the same order as we probe them makes it a bit
easier to track what's happening.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 72e45e92
...@@ -680,7 +680,7 @@ EXPORT_SYMBOL(drm_crtc_cleanup); ...@@ -680,7 +680,7 @@ EXPORT_SYMBOL(drm_crtc_cleanup);
void drm_mode_probed_add(struct drm_connector *connector, void drm_mode_probed_add(struct drm_connector *connector,
struct drm_display_mode *mode) struct drm_display_mode *mode)
{ {
list_add(&mode->head, &connector->probed_modes); list_add_tail(&mode->head, &connector->probed_modes);
} }
EXPORT_SYMBOL(drm_mode_probed_add); EXPORT_SYMBOL(drm_mode_probed_add);
......
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