Skip to content

Commit

Permalink
mxc_hdmi: don't require CEA mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Nelson committed Nov 21, 2012
1 parent 6e80634 commit 50aa49f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/video/mxc_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1538,10 +1538,10 @@ 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)) {
int vic = mxc_edid_mode_to_vic(mode);

dev_dbg(&hdmi->pdev->dev, "Added mode %d:", i);
dev_info(&hdmi->pdev->dev, "%s: Added mode %d(VIC %u):", __func__, i, vic);
dev_dbg(&hdmi->pdev->dev,
"xres = %d, yres = %d, freq = %d, vmode = %d, flag = %d\n",
hdmi->fbi->monspecs.modedb[i].xres,
Expand Down

0 comments on commit 50aa49f

Please sign in to comment.