Commit f177ddf5 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP: Changed OMAP_GPIO_IRQ() macro to allow higher GPIO interrupts

Changed OMAP_GPIO_IRQ() macro to allow higher GPIO interrupts
parent 967f495c
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
#define OMAP_GPIO_IRQ(nr) (OMAP_GPIO_IS_MPUIO(nr) ? \ #define OMAP_GPIO_IRQ(nr) (OMAP_GPIO_IS_MPUIO(nr) ? \
IH_MPUIO_BASE + ((nr) & 0x0f) : \ 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_gpio_init(void); /* Call from board init only */
extern int omap_request_gpio(int gpio); extern int omap_request_gpio(int gpio);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment