Skip to content

Commit

Permalink
arm: mxc: 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 ce4ed25 commit eb2d718
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions arch/arm/plat-mxc/3ds_debugboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,9 @@ static void mxc_expio_irq_handler(u32 irq, struct irq_desc *desc)

expio_irq = MXC_BOARD_IRQ_START;
for (; int_valid != 0; int_valid >>= 1, expio_irq++) {
struct irq_desc *d;
if ((int_valid & 1) == 0)
continue;
d = irq_desc + expio_irq;
if (unlikely(!(d->handle_irq)))
pr_err("\nEXPIO irq: %d unhandled\n", expio_irq);
else
d->handle_irq(expio_irq, d);
generic_handle_irq(expio_irq);
}

desc->irq_data.chip->irq_ack(&desc->irq_data);
Expand Down

0 comments on commit eb2d718

Please sign in to comment.