diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-30 04:07:09 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-08-01 00:35:32 +0400 |
commit | e0a725a7460b3bc3a15c95b1241394cb185d9af6 (patch) | |
tree | 2cec466b43071701c963d2f93adb7241d809f916 /include/asm-mips/pmon.h | |
parent | 7f32a88e9cb6587cae89f5488050d167397ab9b2 (diff) | |
download | linux-e0a725a7460b3bc3a15c95b1241394cb185d9af6.tar.xz |
[MIPS] PMON: Fix cpustart declaration.
This now matches how cpustart is actually being invoked from Linux.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/pmon.h')
-rw-r--r-- | include/asm-mips/pmon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/pmon.h b/include/asm-mips/pmon.h index 260f3448ccf1..6ad519189ce2 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); |