Signed-off-by: Thomas Gleixner --- arch/arm/plat-mxc/3ds_debugboard.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) Index: linux-2.6-tip/arch/arm/plat-mxc/3ds_debugboard.c =================================================================== --- linux-2.6-tip.orig/arch/arm/plat-mxc/3ds_debugboard.c +++ linux-2.6-tip/arch/arm/plat-mxc/3ds_debugboard.c @@ -100,14 +100,9 @@ static void mxc_expio_irq_handler(u32 ir 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); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/