Skip to content

Commit

Permalink
arm: omap: Fix typo in ams-delta-fiq.c
Browse files Browse the repository at this point in the history
8435cf7 (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>
  • Loading branch information
Thomas Gleixner committed Mar 20, 2014
1 parent b718102 commit b524ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap1/ams-delta-fiq.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static irqreturn_t deferred_fiq(int irq, void *dev_id)
int gpio, irq_num, fiq_count;
struct irq_chip *irq_chip;

irq_chip = irq_get_irq_chip(gpio_to_irq(AMS_DELTA_GPIO_PIN_KEYBRD_CLK));
irq_chip = irq_get_chip(gpio_to_irq(AMS_DELTA_GPIO_PIN_KEYBRD_CLK));

/*
* For each handled GPIO interrupt, keep calling its interrupt handler
Expand Down

0 comments on commit b524ca7

Please sign in to comment.