diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-01-12 02:07:11 +0300 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-12 12:39:14 +0300 |
commit | 8fce10a3c9ee7f9c74d83502fd5156a8ec82c21a (patch) | |
tree | 4435d67411d7bf350a1a02784a0710f9162bd140 /arch/powerpc/platforms/cell/spufs/syscalls.c | |
parent | b0da985644faa45def84ce5d8e18af6f1680f490 (diff) | |
download | linux-8fce10a3c9ee7f9c74d83502fd5156a8ec82c21a.tar.xz |
[PATCH] powerpc: cell namespace cleanup
These symbols are only used in the file that they are defined in,
so they should not be in the global namespace.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/spufs/syscalls.c')
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/syscalls.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/syscalls.c b/arch/powerpc/platforms/cell/spufs/syscalls.c index d549aa7ebea6..e6565a949ddc 100644 --- a/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/arch/powerpc/platforms/cell/spufs/syscalls.c @@ -29,7 +29,9 @@ * value of the spu_status register after the SPU has stopped. * */ -long do_spu_run(struct file *filp, __u32 __user *unpc, __u32 __user *ustatus) +static long do_spu_run(struct file *filp, + __u32 __user *unpc, + __u32 __user *ustatus) { long ret; struct spufs_inode_info *i; |