From patchwork Thu Nov 18 09:45:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Hannemann X-Patchwork-Id: 335451 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAI9juAJ001632 for ; Thu, 18 Nov 2010 09:45:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756173Ab0KRJpz (ORCPT ); Thu, 18 Nov 2010 04:45:55 -0500 Received: from mta-1.ms.rz.RWTH-Aachen.DE ([134.130.7.72]:55879 "EHLO mta-1.ms.rz.rwth-aachen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751686Ab0KRJpz (ORCPT ); Thu, 18 Nov 2010 04:45:55 -0500 Content-transfer-encoding: 7BIT Received: from ironport-out-1.rz.rwth-aachen.de ([134.130.5.40]) by mta-1.ms.rz.RWTH-Aachen.de (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008)) with ESMTP id <0LC200DLQR4IZ830@mta-1.ms.rz.RWTH-Aachen.de>; Thu, 18 Nov 2010 10:45:54 +0100 (CET) X-IronPort-AV: E=Sophos; i="4.59,216,1288566000"; d="scan'208"; a="81697504" Received: from smarthost-2.ms.rz.rwth-aachen.de (HELO smarthost.rwth-aachen.de) ([134.130.7.90]) by ironport-in-1.rz.rwth-aachen.de with ESMTP; Thu, 18 Nov 2010 10:45:43 +0100 Received: from localhost.localdomain (informatik-4-137-226-12-76.nn.RWTH-Aachen.DE [137.226.12.76] (may be forged)) by smarthost.rwth-aachen.de (8.14.4+Sun/8.13.8/1) with ESMTP id oAI9jhjw022967; Thu, 18 Nov 2010 10:45:43 +0100 (CET) From: Arnd Hannemann To: linux-fbdev@vger.kernel.org, linux-sh@vger.kernel.org Cc: Arnd Hannemann Subject: [PATCH v2] fbdev: modedb: fix CEA modes Date: Thu, 18 Nov 2010 10:45:42 +0100 Message-id: <1290073542-943-1-git-send-email-arnd@arndnet.de> X-Mailer: git-send-email 1.7.0.4 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Thu, 18 Nov 2010 09:45:57 +0000 (UTC) diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c index 9a0ae6c..c3a1825 100644 --- a/drivers/video/modedb.c +++ b/drivers/video/modedb.c @@ -289,7 +289,8 @@ const struct fb_videomode cea_modes[64] = { }, /* #5: 1920x1080i@59.94/60Hz */ [5] = { - NULL, 60, 1920, 1080, 13763, 148, 88, 15, 2, 44, 5, 0, FB_VMODE_INTERLACED, 0, + NULL, 60, 1920, 1080, 13763, 148, 88, 15, 2, 44, 5, + FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, FB_VMODE_INTERLACED, 0, }, /* #7: 720(1440)x480iH@59.94/60Hz */ [7] = { @@ -305,19 +306,22 @@ const struct fb_videomode cea_modes[64] = { }, /* #19: 1280x720p@50Hz */ [19] = { - NULL, 50, 1280, 720, 13468, 220, 440, 20, 5, 40, 5, 0, FB_VMODE_NONINTERLACED, 0, + NULL, 50, 1280, 720, 13468, 220, 440, 20, 5, 40, 5, + FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, 0, }, /* #20: 1920x1080i@50Hz */ [20] = { - NULL, 50, 1920, 1080, 13480, 148, 528, 15, 5, 528, 5, 0, FB_VMODE_INTERLACED, 0, + NULL, 50, 1920, 1080, 13480, 148, 528, 15, 5, 528, 5, + FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, FB_VMODE_INTERLACED, 0, }, /* #32: 1920x1080p@23.98/24Hz */ [32] = { - NULL, 24, 1920, 1080, 13468, 148, 638, 36, 4, 44, 5, 0, FB_VMODE_NONINTERLACED, 0, + NULL, 24, 1920, 1080, 13468, 148, 638, 36, 4, 44, 5, + FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, 0, }, /* #35: (2880)x480p4x@59.94/60Hz */ [35] = { - NULL, 50, 2880, 480, 11100, 240, 64, 30, 9, 248, 6, 0, FB_VMODE_NONINTERLACED, 0, + NULL, 60, 2880, 480, 9250, 240, 64, 30, 9, 248, 6, 0, FB_VMODE_NONINTERLACED, 0, }, };