From: Ralf Baechle Date: Mon, 30 Jul 2007 00:07:09 +0000 (+0100) Subject: [MIPS] PMON: Fix cpustart declaration. X-Git-Tag: v3.12-rc1~27309^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0a725a7460b3bc3a15c95b1241394cb185d9af6;p=kernel%2Fkernel-generic.git [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 260f344..6ad5191 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);