aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-10-08 08:38:25 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-10-29 06:44:42 -0400
commit2b5c0d4fd246a3ec0ab79c6518860c673c4515ef (patch)
tree610b4fe47660c445df1b841d64aa242bb36b156b /drivers/video
parentf236b892b1cb736edbb9b61ace60ca4dd862e53a (diff)
OMAPFB: remove use of extended edid block
It seems that using the second EDID block causes more problems than is of any help. The first mode in the extended block will get FB_MODE_IS_FIRST set, which will override the first mode from the first EDID block, thus making the default videomode selection not to work properly. This patch removes the use of the extended edid block for now. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/omap2/omapfb/omapfb-main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/video/omap2/omapfb/omapfb-main.c b/drivers/video/omap2/omapfb/omapfb-main.c
index af2844a3464..24c339df0b8 100644
--- a/drivers/video/omap2/omapfb/omapfb-main.c
+++ b/drivers/video/omap2/omapfb/omapfb-main.c
@@ -2272,9 +2272,6 @@ static int omapfb_find_best_mode(struct omap_dss_device *display,
2272 2272
2273 fb_edid_to_monspecs(edid, specs); 2273 fb_edid_to_monspecs(edid, specs);
2274 2274
2275 if (edid[126] > 0)
2276 fb_edid_add_monspecs(edid + 0x80, specs);
2277
2278 best_xres = 0; 2275 best_xres = 0;
2279 best_idx = -1; 2276 best_idx = -1;
2280 2277