Browse Source

[MIPS] EV96100: ev96100_cpu_irq needs a struct pt_regs argument.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 19 years ago
parent
commit
67cbeb334e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/mips/galileo-boards/ev96100/irq.c

+ 1 - 1
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 pending)
+asmlinkage void ev96100_cpu_irq(unsigned int pending, struct pt_regs *regs)
 {
 	do_IRQ(ffz8(pending >> 8), regs);
 }