diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-03-20 07:44:02 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-03-20 07:44:02 -0400 |
commit | b524ca742ef304970f61c32af320e5c5bdb355ff (patch) | |
tree | 3501149f6ccb173f975a35a12b82e7d669f813f5 | |
parent | b718102e7d4ce2f9640805251fbbb3619fbb9a46 (diff) |
arm: omap: Fix typo in ams-delta-fiq.c
8435cf757 (arm: Replace various irq_desc accesses) typoed
irq_get_irq_chip() instead of irq_get_chip().
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/arm/mach-omap1/ams-delta-fiq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/ams-delta-fiq.c b/arch/arm/mach-omap1/ams-delta-fiq.c index 2ebc514123a7..d1f12095f315 100644 --- a/arch/arm/mach-omap1/ams-delta-fiq.c +++ b/arch/arm/mach-omap1/ams-delta-fiq.c | |||
@@ -47,7 +47,7 @@ static irqreturn_t deferred_fiq(int irq, void *dev_id) | |||
47 | int gpio, irq_num, fiq_count; | 47 | int gpio, irq_num, fiq_count; |
48 | struct irq_chip *irq_chip; | 48 | struct irq_chip *irq_chip; |
49 | 49 | ||
50 | irq_chip = irq_get_irq_chip(gpio_to_irq(AMS_DELTA_GPIO_PIN_KEYBRD_CLK)); | 50 | irq_chip = irq_get_chip(gpio_to_irq(AMS_DELTA_GPIO_PIN_KEYBRD_CLK)); |
51 | 51 | ||
52 | /* | 52 | /* |
53 | * For each handled GPIO interrupt, keep calling its interrupt handler | 53 | * For each handled GPIO interrupt, keep calling its interrupt handler |