aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/au1000/common/irq.c
diff options
context:
space:
mode:
authorPete Popov <ppopov@embeddedalley.com>2005-03-01 01:33:16 -0500
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:30:47 -0400
commite3ad1c23ba72214669b364c6fa304531dc768c3e (patch)
treebc1e0004d3df66b4c37a2deb8d89431657039719 /arch/mips/au1000/common/irq.c
parent784f7b9d895893c6aa3ca471c1344a62fc29c285 (diff)
Base Au1200 2.6 support.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/au1000/common/irq.c')
-rw-r--r--arch/mips/au1000/common/irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/au1000/common/irq.c b/arch/mips/au1000/common/irq.c
index 0b912f739fe..ebf93bdbad1 100644
--- a/arch/mips/au1000/common/irq.c
+++ b/arch/mips/au1000/common/irq.c
@@ -488,7 +488,7 @@ void intc0_req0_irqdispatch(struct pt_regs *regs)
488 intc0_req0 |= au_readl(IC0_REQ0INT); 488 intc0_req0 |= au_readl(IC0_REQ0INT);
489 489
490 if (!intc0_req0) return; 490 if (!intc0_req0) return;
491 491#ifdef AU1000_USB_DEV_REQ_INT
492 /* 492 /*
493 * Because of the tight timing of SETUP token to reply 493 * Because of the tight timing of SETUP token to reply
494 * transactions, the USB devices-side packet complete 494 * transactions, the USB devices-side packet complete
@@ -499,7 +499,7 @@ void intc0_req0_irqdispatch(struct pt_regs *regs)
499 do_IRQ(AU1000_USB_DEV_REQ_INT, regs); 499 do_IRQ(AU1000_USB_DEV_REQ_INT, regs);
500 return; 500 return;
501 } 501 }
502 502#endif
503 irq = au_ffs(intc0_req0) - 1; 503 irq = au_ffs(intc0_req0) - 1;
504 intc0_req0 &= ~(1<<irq); 504 intc0_req0 &= ~(1<<irq);
505 do_IRQ(irq, regs); 505 do_IRQ(irq, regs);