diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-02-21 14:53:50 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-03-08 15:43:47 +1100 |
commit | 02567c6cdad4d6254052f25f3b93aa2771f48d25 (patch) | |
tree | 7490dc0d9cd792534040d92d53883aeea3d737be | |
parent | 30437b3e743f33e9b68f813ca24e547aa9fcf7d7 (diff) |
[POWERPC] Allocate syscall number for sys_getcpu
I forgot to do this when wiring up the syscall.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | include/asm-powerpc/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-powerpc/unistd.h b/include/asm-powerpc/unistd.h index 0ae954e3d25..bcc21bf56a1 100644 --- a/include/asm-powerpc/unistd.h +++ b/include/asm-powerpc/unistd.h @@ -324,10 +324,11 @@ #define __NR_get_robust_list 299 #define __NR_set_robust_list 300 #define __NR_move_pages 301 +#define __NR_getcpu 302 #ifdef __KERNEL__ -#define __NR_syscalls 302 +#define __NR_syscalls 303 #define __NR__exit __NR_exit #define NR_syscalls __NR_syscalls |