From patchwork Tue Oct 26 04:28:35 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samreen X-Patchwork-Id: 281532 X-Patchwork-Delegate: tomi.valkeinen@nokia.com 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 o9Q4Y5E6004442 for ; Tue, 26 Oct 2010 04:34:07 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751923Ab0JZEeF (ORCPT ); Tue, 26 Oct 2010 00:34:05 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:35902 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751958Ab0JZEeD (ORCPT ); Tue, 26 Oct 2010 00:34:03 -0400 Received: from dlep33.itg.ti.com ([157.170.170.112]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o9Q4Y0lC005630 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 25 Oct 2010 23:34:00 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep33.itg.ti.com (8.13.7/8.13.7) with ESMTP id o9Q4Xw74010056; Mon, 25 Oct 2010 23:33:58 -0500 (CDT) Received: from localhost (graphicspc.apr.dhcp.ti.com [172.24.136.217]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id o9Q4Xtf05634; Mon, 25 Oct 2010 23:33:55 -0500 (CDT) From: Samreen To: Tomi Valkeinen , Vikram Pandita , Mukund Mittal , Santosh Shilimkar Cc: linux-omap@vger.kernel.org, Kishore Y , Mukund Mittal , Samreen Subject: [PATCH v2 2/2] OMAP3: Enable display on ZOOM2/3/3630SDP Date: Tue, 26 Oct 2010 09:58:35 +0530 Message-Id: <1288067315-30492-3-git-send-email-samreen@ti.com> X-Mailer: git-send-email 1.5.6.3 In-Reply-To: <1288067315-30492-2-git-send-email-samreen@ti.com> References: <1288067315-30492-1-git-send-email-samreen@ti.com> <1288067315-30492-2-git-send-email-samreen@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@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]); Tue, 26 Oct 2010 04:34:07 +0000 (UTC) diff --git a/arch/arm/mach-omap2/board-3630sdp.c b/arch/arm/mach-omap2/board-3630sdp.c index b359c3f..d6ba94a 100644 --- a/arch/arm/mach-omap2/board-3630sdp.c +++ b/arch/arm/mach-omap2/board-3630sdp.c @@ -210,6 +210,7 @@ static void __init omap_sdp_init(void) omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); omap_serial_init(); zoom_peripherals_init(); + zoom_display_init(); board_smc91x_init(); board_flash_init(sdp_flash_partitions, chip_sel_sdp); enable_board_wakeup_source(); diff --git a/arch/arm/mach-omap2/board-zoom2.c b/arch/arm/mach-omap2/board-zoom2.c index 3ad9ecf..1db4d95 100644 --- a/arch/arm/mach-omap2/board-zoom2.c +++ b/arch/arm/mach-omap2/board-zoom2.c @@ -138,6 +138,7 @@ static void __init omap_zoom2_init(void) board_nand_init(zoom_nand_partitions, ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS); zoom_debugboard_init(); + zoom_display_init(); } MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board") diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c index 6ca0b83..6e012f6 100644 --- a/arch/arm/mach-omap2/board-zoom3.c +++ b/arch/arm/mach-omap2/board-zoom3.c @@ -117,6 +117,7 @@ static void __init omap_zoom_init(void) board_nand_init(zoom_nand_partitions, ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS); zoom_debugboard_init(); + zoom_display_init(); omap_mux_init_gpio(64, OMAP_PIN_OUTPUT); usb_ehci_init(&ehci_pdata);