diff options
author | Arnd Bergmann <arnd.bergmann@de.ibm.com> | 2006-04-18 15:24:16 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-04-21 22:32:50 +1000 |
commit | 23b2527d5eae89841eb66b46e80ec91980493dda (patch) | |
tree | e905775590d0ad81058b4bb0f2bf98778441ccd6 /arch/powerpc/kernel/systbl.S | |
parent | 60162e498e220d1f03bbee5bac0a9ddd6de60ae7 (diff) |
[PATCH] powerpc/cell: remove BUILD_BUG_ON and add sys_tee to spu_syscall_table
Every time a new syscall gets added, a BUILD_BUG_ON in
arch/powerpc/platforms/cell/spu_callbacks.c gets triggered.
Since the addition of a new syscall is rather harmless,
the error should just be removed.
While we're here, add sys_tee to the list and add a comment
to systbl.S to remind people that there is another list
on powerpc.
Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/systbl.S')
-rw-r--r-- | arch/powerpc/kernel/systbl.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/systbl.S b/arch/powerpc/kernel/systbl.S index a14c96403840..8d1522690501 100644 --- a/arch/powerpc/kernel/systbl.S +++ b/arch/powerpc/kernel/systbl.S @@ -324,3 +324,8 @@ COMPAT_SYS(ppoll) SYSCALL(unshare) SYSCALL(splice) SYSCALL(tee) + +/* + * please add new calls to arch/powerpc/platforms/cell/spu_callbacks.c + * as well when appropriate. + */ |