From: Ralf Baechle Date: Sun, 2 Apr 2006 21:17:09 +0000 (+0100) Subject: [MIPS] EV96100: ev96100_cpu_irq needs a struct pt_regs argument. X-Git-Tag: v2.6.17-rc2~1^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67cbeb334ec2f1303dd11930b0eb0379e8e39559;p=thirdparty%2Fkernel%2Flinux.git [MIPS] EV96100: ev96100_cpu_irq needs a struct pt_regs argument. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/galileo-boards/ev96100/irq.c b/arch/mips/galileo-boards/ev96100/irq.c index fa29c3b0323f9..383801dd1b956 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 pending) +asmlinkage void ev96100_cpu_irq(unsigned int pending, struct pt_regs *regs) { do_IRQ(ffz8(pending >> 8), regs); }