projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c385e50
)
drm/edid: When checking duplicate standard modes, walked the probed list
author
Adam Jackson
<ajax@redhat.com>
Fri, 9 Apr 2010 16:52:49 +0000
(16:52 +0000)
committer
Dave Airlie
<airlied@redhat.com>
Fri, 9 Apr 2010 22:35:14 +0000
(08:35 +1000)
... and not the global list.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_edid.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/drm_edid.c
b/drivers/gpu/drm/drm_edid.c
index 0f8c06311cf652f2e5b0c1c8235d73fbfa91bd47..df7a1abfe7e8bb3507ba56d566be576e4d7d4c02 100644
(file)
--- a/
drivers/gpu/drm/drm_edid.c
+++ b/
drivers/gpu/drm/drm_edid.c
@@
-847,7
+847,7
@@
drm_mode_std(struct drm_connector *connector, struct edid *edid,
* instead. This way we don't have to guess at interlace or
* reduced blanking.
*/
- list_for_each_entry(m, &connector->modes, head)
+ list_for_each_entry(m, &connector->
probed_
modes, head)
if (m->hdisplay == hsize && m->vdisplay == vsize &&
drm_mode_vrefresh(m) == vrefresh_rate)
return NULL;