diff options
| -rw-r--r-- | arch/arm/mach-omap2/board-zoom-debugboard.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/serial.c | 2 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index bac5c4321ff..f546063775b 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c @@ -12,6 +12,7 @@  #include <linux/gpio.h>  #include <linux/serial_8250.h>  #include <linux/smsc911x.h> +#include <linux/interrupt.h>  #include <mach/gpmc.h> @@ -84,6 +85,7 @@ static struct plat_serial8250_port serial_platform_data[] = {  		.mapbase	= 0x10000000,  		.irq		= OMAP_GPIO_IRQ(102),  		.flags		= UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ, +		.irqflags	= IRQF_SHARED | IRQF_TRIGGER_RISING,  		.iotype		= UPIO_MEM,  		.regshift	= 1,  		.uartclk	= QUART_CLK, diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 409b03309af..dd3c735b558 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);  |