diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-04-03 01:07:36 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-04-19 06:14:20 +0400 |
commit | 2ef2e1d9731bd8b3d8565e31bacd52a7c13a0aed (patch) | |
tree | 86828c43aef9e7778cd7e2f9d208bc65be50d426 /arch | |
parent | c40b92e09c029ef2cb0b2287cbd222ff14ae3de8 (diff) | |
download | linux-2ef2e1d9731bd8b3d8565e31bacd52a7c13a0aed.tar.xz |
[MIPS] EV96100: Fix over two year old typo in variable name.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/galileo-boards/ev96100/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/galileo-boards/ev96100/irq.c b/arch/mips/galileo-boards/ev96100/irq.c index 97bf094da4fe..fa29c3b0323f 100644 --- a/arch/mips/galileo-boards/ev96100/irq.c +++ b/arch/mips/galileo-boards/ev96100/irq.c @@ -54,7 +54,7 @@ static inline unsigned int ffz8(unsigned int word) return k; } -asmlinkage void ev96100_cpu_irq(unsigned int pendin) +asmlinkage void ev96100_cpu_irq(unsigned int pending) { do_IRQ(ffz8(pending >> 8), regs); } |