From: Gabor Juhos Date: Tue, 14 Dec 2010 08:00:25 +0000 (+0000) Subject: ramips: handle OTG interrupt on the RT305x SoC X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f9898e30fbaa7a1d9e2d5875adf43e04075783ee;p=librecmc%2Flibrecmc.git ramips: handle OTG interrupt on the RT305x SoC SVN-Revision: 24560 --- diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/irq.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/irq.c index acd1880f5c..0d1a040b67 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/irq.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/irq.c @@ -38,6 +38,9 @@ static void rt305x_intc_irq_dispatch(void) else if (pending & RT305X_INTC_INT_UART1) do_IRQ(RT305X_INTC_IRQ_UART1); + else if (pending & RT305X_INTC_INT_OTG) + do_IRQ(RT305X_INTC_IRQ_OTG); + /* TODO: handle PIO interrupts as well */ else