diff options
author | Vitaly Wool <vitalywool@gmail.com> | 2006-10-04 11:19:58 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-04 13:06:15 -0400 |
commit | 7009af8cd37f7904939aec6bd2325c581abd7cac (patch) | |
tree | bcf4dcda14c662a4d0394c54f2f05731655e3256 /arch/mips/philips/pnx8550/common/int.c | |
parent | 4a61f17378c2cdd9bd8f34ef8bd7422861d0c1f1 (diff) |
[MIPS] PNX8550 fixups
This patch fixes the compilation errors on PNX8550 and hard-to-track
bug in interrupt handling.
It also corresponds to the latest changes in PNX8550 serial driver.
Signed-off-by: Vitaly Wool <vitalywool@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/philips/pnx8550/common/int.c')
-rw-r--r-- | arch/mips/philips/pnx8550/common/int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/philips/pnx8550/common/int.c b/arch/mips/philips/pnx8550/common/int.c index 099679a9dfb9..3c93512be1ec 100644 --- a/arch/mips/philips/pnx8550/common/int.c +++ b/arch/mips/philips/pnx8550/common/int.c | |||
@@ -90,7 +90,7 @@ asmlinkage void plat_irq_dispatch(struct pt_regs *regs) | |||
90 | unsigned int pending = read_c0_status() & read_c0_cause(); | 90 | unsigned int pending = read_c0_status() & read_c0_cause(); |
91 | 91 | ||
92 | if (pending & STATUSF_IP2) | 92 | if (pending & STATUSF_IP2) |
93 | do_IRQ(2, regs); | 93 | hw0_irqdispatch(2, regs); |
94 | else if (pending & STATUSF_IP7) { | 94 | else if (pending & STATUSF_IP7) { |
95 | if (read_c0_config7() & 0x01c0) | 95 | if (read_c0_config7() & 0x01c0) |
96 | timer_irqdispatch(7, regs); | 96 | timer_irqdispatch(7, regs); |