[POWERPC] spufs: Make file-internal functions & variables static
authorSebastian Siewior <cbe-oss-dev@ml.breakpoint.cc>
Wed, 19 Sep 2007 04:38:12 +0000 (14:38 +1000)
committerPaul Mackerras <paulus@samba.org>
Wed, 19 Sep 2007 05:12:16 +0000 (15:12 +1000)
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>
arch/powerpc/platforms/cell/spu_base.c
arch/powerpc/platforms/cell/spu_callbacks.c
arch/powerpc/platforms/cell/spufs/file.c
arch/powerpc/platforms/cell/spufs/run.c
arch/powerpc/platforms/cell/spufs/syscalls.c

index 106d2921e2d9f5a057337935c94d4e05ed18f3d2..b5a21177bb32eb5e801acec382462fd67894f096 100644 (file)
@@ -458,7 +458,7 @@ static int spu_shutdown(struct sys_device *sysdev)
        return 0;
 }
 
-struct sysdev_class spu_sysdev_class = {
+static struct sysdev_class spu_sysdev_class = {
        set_kset_name("spu"),
        .shutdown = spu_shutdown,
 };
index 47ec3be3edcd6dfae91890fe8c4100d7e2593b0d..ab39e223d44d19ef04ebd77c1bd8e52fda0d6c6d 100644 (file)
@@ -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,
index 4100ddc52f0227fb0fcb300fb50da78bffa9b9d3..a4a8770623d490037f67ea773904ccba2ca8b9ea 100644 (file)
@@ -199,9 +199,9 @@ static int spufs_mem_mmap(struct file *file, struct vm_area_struct *vma)
 }
 
 #ifdef CONFIG_SPU_FS_64K_LS
-unsigned long spufs_get_unmapped_area(struct file *file, unsigned long addr,
-                                     unsigned long len, unsigned long pgoff,
-                                     unsigned long flags)
+static unsigned long spufs_get_unmapped_area(struct file *file,
+               unsigned long addr, unsigned long len, unsigned long pgoff,
+               unsigned long flags)
 {
        struct spu_context      *ctx = file->private_data;
        struct spu_state        *csa = &ctx->csa;
index 958f10e90fddf5260ba7fef36fa160f97ba0de79..1ce5e22ea5f44cfbb093b1167c4a01b60bba5e0d 100644 (file)
@@ -205,7 +205,7 @@ static int spu_reacquire_runnable(struct spu_context *ctx, u32 *npc,
  * This means we can only do a very rough approximation of POSIX
  * signal semantics.
  */
-int spu_handle_restartsys(struct spu_context *ctx, long *spu_ret,
+static int spu_handle_restartsys(struct spu_context *ctx, long *spu_ret,
                          unsigned int *npc)
 {
        int ret;
@@ -241,7 +241,7 @@ int spu_handle_restartsys(struct spu_context *ctx, long *spu_ret,
        return ret;
 }
 
-int spu_process_callback(struct spu_context *ctx)
+static int spu_process_callback(struct spu_context *ctx)
 {
        struct spu_syscall_block s;
        u32 ls_pointer, npc;
index 43f0fb88abbc0812117e44758aec94883a70d31a..3d8c3281c7684e5ffe466fd3fd01964bd2c55056 100644 (file)
@@ -76,8 +76,8 @@ asmlinkage long sys_spu_run(int fd, __u32 __user *unpc, __u32 __user *ustatus)
 }
 #endif
 
-asmlinkage long do_spu_create(const char __user *pathname, unsigned int flags,
-                               mode_t mode, struct file *neighbor)
+static asmlinkage long do_spu_create(const char __user *pathname,
+               unsigned int flags, mode_t mode, struct file *neighbor)
 {
        char *tmp;
        int ret;