diff options
author | Kevin Hilman <khilman@ti.com> | 2011-04-21 12:17:35 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-06-16 14:13:46 -0400 |
commit | eef4bec7bf2fa9953f6b8f371d5914d014f45d40 (patch) | |
tree | 9c81437aca15d8d5f4caed2e23d1072877c1e13c /arch/arm/mach-omap1/gpio7xx.c | |
parent | fa87931acb8203a1f40a3c637863ad238f70cd40 (diff) |
gpio/omap: consolidate IRQ status handling, remove #ifdefs
Cleanup IRQ status handling by passing IRQ status register offsets
via platform data.
Cleans up clearing of GPIO IRQ status and GPIO ISR handler.
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap1/gpio7xx.c')
-rw-r--r-- | arch/arm/mach-omap1/gpio7xx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/gpio7xx.c b/arch/arm/mach-omap1/gpio7xx.c index efe4dccaa4f2..35e8b31688d0 100644 --- a/arch/arm/mach-omap1/gpio7xx.c +++ b/arch/arm/mach-omap1/gpio7xx.c | |||
@@ -43,6 +43,7 @@ static struct omap_gpio_reg_offs omap7xx_mpuio_regs = { | |||
43 | .direction = OMAP_MPUIO_IO_CNTL / 2, | 43 | .direction = OMAP_MPUIO_IO_CNTL / 2, |
44 | .datain = OMAP_MPUIO_INPUT_LATCH / 2, | 44 | .datain = OMAP_MPUIO_INPUT_LATCH / 2, |
45 | .dataout = OMAP_MPUIO_OUTPUT / 2, | 45 | .dataout = OMAP_MPUIO_OUTPUT / 2, |
46 | .irqstatus = OMAP_MPUIO_GPIO_INT / 2, | ||
46 | }; | 47 | }; |
47 | 48 | ||
48 | static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = { | 49 | static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = { |
@@ -80,6 +81,7 @@ static struct omap_gpio_reg_offs omap7xx_gpio_regs = { | |||
80 | .direction = OMAP7XX_GPIO_DIR_CONTROL, | 81 | .direction = OMAP7XX_GPIO_DIR_CONTROL, |
81 | .datain = OMAP7XX_GPIO_DATA_INPUT, | 82 | .datain = OMAP7XX_GPIO_DATA_INPUT, |
82 | .dataout = OMAP7XX_GPIO_DATA_OUTPUT, | 83 | .dataout = OMAP7XX_GPIO_DATA_OUTPUT, |
84 | .irqstatus = OMAP7XX_GPIO_INT_STATUS, | ||
83 | }; | 85 | }; |
84 | 86 | ||
85 | static struct __initdata omap_gpio_platform_data omap7xx_gpio1_config = { | 87 | static struct __initdata omap_gpio_platform_data omap7xx_gpio1_config = { |