From patchwork Fri Jun 12 00:49:57 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: vikram pandita X-Patchwork-Id: 29668 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5C0pfL3010638 for ; Fri, 12 Jun 2009 00:51:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754998AbZFLAvh (ORCPT ); Thu, 11 Jun 2009 20:51:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755200AbZFLAvh (ORCPT ); Thu, 11 Jun 2009 20:51:37 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:60168 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754998AbZFLAvg (ORCPT ); Thu, 11 Jun 2009 20:51:36 -0400 Received: from dlep35.itg.ti.com ([157.170.170.118]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id n5C0pYkH028733 for ; Thu, 11 Jun 2009 19:51:39 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id n5C0pVN6003235; Thu, 11 Jun 2009 19:51:31 -0500 (CDT) Received: from vip-tid (lta0307903-128247075087.am.dhcp.ti.com [128.247.75.87]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id n5C0pV903469; Thu, 11 Jun 2009 19:51:31 -0500 (CDT) Received: from vip-tid (localhost.localdomain [127.0.0.1]) by vip-tid (Postfix) with ESMTP id 2CF4429CAEE; Thu, 11 Jun 2009 19:49:57 -0500 (CDT) Received: (from vikram@localhost) by vip-tid (8.14.3/8.14.3/Submit) id n5C0nvXs022888; Thu, 11 Jun 2009 19:49:57 -0500 X-Authentication-Warning: vip-tid: vikram set sender to vikram.pandita@ti.com using -f From: Vikram Pandita To: linux-omap@vger.kernel.org Cc: Vikram Pandita Subject: [PATCH 2/2] OMAP: Zoom2: Fix file system loading issue Date: Thu, 11 Jun 2009 19:49:57 -0500 Message-Id: <1244767797-22860-1-git-send-email-vikram.pandita@ti.com> X-Mailer: git-send-email 1.6.0.3.613.g9f8f13 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org IRQ for 8250 driver is not working on zoom2 as IRQ HIGH level setting is requried This setting was not possible in 8250 driver Signed-off-by: Vikram Pandita --- arch/arm/mach-omap2/board-zoom-debugboard.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index bac5c43..a8c45dc 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c @@ -83,7 +83,8 @@ static struct plat_serial8250_port serial_platform_data[] = { { .mapbase = 0x10000000, .irq = OMAP_GPIO_IRQ(102), - .flags = UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ, + .flags = UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ| + UPF_IRQ_TRIG_HIGH, .iotype = UPIO_MEM, .regshift = 1, .uartclk = QUART_CLK,