瀏覽代碼

drm/sti: Drop bogus drm_mode_sort() call

sti seems confused about which mode list is used in its .get_modes()
hook. It adds the modes to the probed_modes list (as is appropriate)
but then for some reason it tries to sort the old mode list.

Just drop the sorting since it does nothing, and let the probe helper
do its thing. It will sort the final mode list after merging in the
modes from the probed_modes list and validating them.

Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Cc: Vincent Abriou <vincent.abriou@st.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1449177255-9515-8-git-send-email-ville.syrjala@linux.intel.com
Ville Syrjälä 9 年之前
父節點
當前提交
d0b414216f
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      drivers/gpu/drm/sti/sti_hda.c

+ 0 - 2
drivers/gpu/drm/sti/sti_hda.c

@@ -543,8 +543,6 @@ static int sti_hda_connector_get_modes(struct drm_connector *connector)
 		count++;
 		count++;
 	}
 	}
 
 
-	drm_mode_sort(&connector->modes);
-
 	return count;
 	return count;
 }
 }