Skip to content

Commit

Permalink
arm: stmp3xxx: Use generic_handle_irq()
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 7222f39 commit e0fc5b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/arm/plat-stmp3xxx/pinmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,7 @@ static void stmp3xxx_gpio_irq(u32 irq, struct irq_desc *desc)

while (stat) {
if (stat & 1)
irq_desc[gpio_irq].handle_irq(gpio_irq,
&irq_desc[gpio_irq]);
generic_handle_irq(gpio_irq);
gpio_irq++;
stat >>= 1;
}
Expand Down

0 comments on commit e0fc5b3

Please sign in to comment.