summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-12-14 08:00:25 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-12-14 08:00:25 +0000
commitf9898e30fbaa7a1d9e2d5875adf43e04075783ee (patch)
treeeb9da4a86b31edba389f2c1cb172c4cd85a04dc0 /target
parent1f002efd98556a2f9c3e07097aec90eb75f1d925 (diff)
downloadmaster-31e0f0ae-f9898e30fbaa7a1d9e2d5875adf43e04075783ee.tar.gz
master-31e0f0ae-f9898e30fbaa7a1d9e2d5875adf43e04075783ee.tar.bz2
master-31e0f0ae-f9898e30fbaa7a1d9e2d5875adf43e04075783ee.zip
ramips: handle OTG interrupt on the RT305x SoC
SVN-Revision: 24560
Diffstat (limited to 'target')
-rw-r--r--target/linux/ramips/files/arch/mips/ralink/rt305x/irq.c3
1 files changed, 3 insertions, 0 deletions
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