From: Tony Lindgren Date: Mon, 3 Oct 2005 08:29:00 +0000 (+0300) Subject: ARM: OMAP: Changed OMAP_GPIO_IRQ() macro to allow higher GPIO interrupts X-Git-Tag: v2.6.15-omap2~184 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=f177ddf5d3aaa9c982fff2e36259cb691a5aada4;p=linux-2.6-omap-h63xx.git ARM: OMAP: Changed OMAP_GPIO_IRQ() macro to allow higher GPIO interrupts Changed OMAP_GPIO_IRQ() macro to allow higher GPIO interrupts --- diff --git a/include/asm-arm/arch-omap/gpio.h b/include/asm-arm/arch-omap/gpio.h index 74cb2b93b70..1b3885741ac 100644 --- a/include/asm-arm/arch-omap/gpio.h +++ b/include/asm-arm/arch-omap/gpio.h @@ -67,7 +67,7 @@ #define OMAP_GPIO_IRQ(nr) (OMAP_GPIO_IS_MPUIO(nr) ? \ IH_MPUIO_BASE + ((nr) & 0x0f) : \ - IH_GPIO_BASE + ((nr) & 0x3f)) + IH_GPIO_BASE + (nr)) extern int omap_gpio_init(void); /* Call from board init only */ extern int omap_request_gpio(int gpio);