From: Ralf Baechle Date: Mon, 30 Jul 2007 00:07:09 +0000 (+0100) Subject: [MIPS] PMON: Fix cpustart declaration. X-Git-Tag: v2.6.23-rc2~30^2~12 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0a725a7460b3bc3a15c95b1241394cb185d9af6;p=linux-2.6 [MIPS] PMON: Fix cpustart declaration. This now matches how cpustart is actually being invoked from Linux. Signed-off-by: Ralf Baechle --- diff --git a/include/asm-mips/pmon.h b/include/asm-mips/pmon.h index 260f3448cc..6ad519189c 100644 --- a/include/asm-mips/pmon.h +++ b/include/asm-mips/pmon.h @@ -22,7 +22,7 @@ struct callvectors { char* (*gets) (char*); union { int (*smpfork) (unsigned long cp, char *sp); - int (*cpustart) (long, long, long, long); + int (*cpustart) (long, void (*)(void), void *, long); } _s; int (*semlock) (int sem); void (*semunlock) (int sem);