summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/serial.c
diff options
context:
space:
mode:
authorVikram Pandita2009-08-28 20:24:08 +0200
committerTony Lindgren2009-08-28 20:24:08 +0200
commitc426df87d8197cde077d03c808f52e3a17045b09 (patch)
tree89a398f73f9d78eab55b7eb9864912aee38629a4 /arch/arm/mach-omap2/serial.c
parentOMAP: iommu: add initial debugfs support (diff)
downloadkernel-qcow2-linux-c426df87d8197cde077d03c808f52e3a17045b09.tar.gz
kernel-qcow2-linux-c426df87d8197cde077d03c808f52e3a17045b09.tar.xz
kernel-qcow2-linux-c426df87d8197cde077d03c808f52e3a17045b09.zip
OMAP2/3: Pass irqflags to 8250 driver
Pass irqflags to 8250 driver with platform_data. At least Zoom2 has IRQF_TRIGGER_RISING requirement for the 8250 GPIO irq. This patch is dependent on 8250 driver changes getting accepted upstream: http://git.kernel.org/?p=linux/kernel/git/sfr/linux-next.git;a=commit;h=7053133124d5cdf207c1168c7a0c582a18e12ea7 Signed-off-by: Vikram Pandita <vikram.pandita@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/serial.c')
-rw-r--r--arch/arm/mach-omap2/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 409b03309af4..dd3c735b5588 100644
--- a/arch/arm/mach-omap2/serial.c
+++ b/arch/arm/mach-omap2/serial.c
@@ -460,7 +460,7 @@ static void omap_uart_idle_init(struct omap_uart_state *uart)
uart->padconf = 0;
}
- p->flags |= UPF_SHARE_IRQ;
+ p->irqflags |= IRQF_SHARED;
ret = request_irq(p->irq, omap_uart_interrupt, IRQF_SHARED,
"serial idle", (void *)uart);
WARN_ON(ret);