aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/cell/spu_callbacks.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/platforms/cell/spu_callbacks.c')
-rw-r--r--arch/powerpc/platforms/cell/spu_callbacks.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/arch/powerpc/platforms/cell/spu_callbacks.c b/arch/powerpc/platforms/cell/spu_callbacks.c
index 8ae86200ef6c..125f2a5f02de 100644
--- a/arch/powerpc/platforms/cell/spu_callbacks.c
+++ b/arch/powerpc/platforms/cell/spu_callbacks.c
@@ -34,20 +34,9 @@
34 */ 34 */
35 35
36static void *spu_syscall_table[] = { 36static void *spu_syscall_table[] = {
37#define SYSCALL(func) sys_ni_syscall, 37#define __SYSCALL(nr, entry, nargs) entry,
38#define COMPAT_SYS(func) sys_ni_syscall, 38#include <asm/syscall_table_spu.h>
39#define PPC_SYS(func) sys_ni_syscall, 39#undef __SYSCALL
40#define OLDSYS(func) sys_ni_syscall,
41#define SYS32ONLY(func) sys_ni_syscall,
42#define PPC64ONLY(func) sys_ni_syscall,
43#define SYSX(f, f3264, f32) sys_ni_syscall,
44
45#define SYSCALL_SPU(func) sys_##func,
46#define COMPAT_SYS_SPU(func) sys_##func,
47#define COMPAT_SPU_NEW(func) sys_##func,
48#define SYSX_SPU(f, f3264, f32) f,
49
50#include <asm/systbl.h>
51}; 40};
52 41
53long spu_sys_callback(struct spu_syscall_block *s) 42long spu_sys_callback(struct spu_syscall_block *s)