diff options
author | Sebastian Siewior <cbe-oss-dev@ml.breakpoint.cc> | 2007-09-19 14:38:12 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-09-19 15:12:16 +1000 |
commit | 1238819a41b6e38e1560afe8f33bbc815671b4f7 (patch) | |
tree | 481d54e3f710c66d68d8d5fe4c0d91698e2a3db1 /arch/powerpc/platforms/cell/spu_callbacks.c | |
parent | aa0154290fc05948560ac43afcccf8259e10bcd0 (diff) | |
download | blackbird-op-linux-1238819a41b6e38e1560afe8f33bbc815671b4f7.tar.gz blackbird-op-linux-1238819a41b6e38e1560afe8f33bbc815671b4f7.zip |
[POWERPC] spufs: Make file-internal functions & variables static
There are a few symbols used only in one file within spufs; this change
makes them static where suitable.
Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/spu_callbacks.c')
-rw-r--r-- | arch/powerpc/platforms/cell/spu_callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spu_callbacks.c b/arch/powerpc/platforms/cell/spu_callbacks.c index 47ec3be3edcd..ab39e223d44d 100644 --- a/arch/powerpc/platforms/cell/spu_callbacks.c +++ b/arch/powerpc/platforms/cell/spu_callbacks.c @@ -33,7 +33,7 @@ * mbind, mq_open, ipc, ... */ -void *spu_syscall_table[] = { +static void *spu_syscall_table[] = { #define SYSCALL(func) sys_ni_syscall, #define COMPAT_SYS(func) sys_ni_syscall, #define PPC_SYS(func) sys_ni_syscall, |