summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hemp <c.hemp@phytec.de>2013-05-06 15:54:43 +0200
committerJustin Waters <justin.waters@timesys.com>2013-11-07 12:19:36 -0500
commit88e02a0a701a26058de30d109eca1e41f0a907dd (patch)
tree276070e6d9b88cd1cfc6958adab16c8e1817d2d9
parent96e1e344bc34d71f027a4ef845d00255eae7bfe9 (diff)
HDMI: Allow non CEA standard
Don't filter mode get from EDID. The filter was added with this patch: ENGR00180117 HDMI: No audio output in 1080P on some TV Some TV support specific video mode that different with CEA standard, and it's pixel clock not comply CEA standard. But audio configuration paramter N and CTS should follow CEA standard. So audio may not work in these specific video mode. Filter video mode get from EDID, only keep standard CEA video mode in the modelist. Signed-off-by: Christian Hemp <c.hemp@phytec.de>
-rw-r--r--drivers/video/mxc_hdmi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c
index 34fb1b282173..fbc70edd63c9 100644
--- a/drivers/video/mxc_hdmi.c
+++ b/drivers/video/mxc_hdmi.c
@@ -1595,8 +1595,7 @@ static void mxc_hdmi_edid_rebuild_modelist(struct mxc_hdmi *hdmi)
*/
mode = &hdmi->fbi->monspecs.modedb[i];
- if (!(mode->vmode & FB_VMODE_INTERLACED) &&
- (mxc_edid_mode_to_vic(mode) != 0)) {
+ if (!(mode->vmode & FB_VMODE_INTERLACED)) {
dev_dbg(&hdmi->pdev->dev, "Added mode %d:", i);
dev_dbg(&hdmi->pdev->dev,