diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-01-04 22:31:29 +0300 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-09 07:44:45 +0300 |
commit | ce8ab8541203f6c7be5b2eeaa97f14f1d8d44e4f (patch) | |
tree | abdb994ac4ded9a90684f0cdc71ea58e6247ab43 /arch/powerpc/platforms/cell/spufs/Makefile | |
parent | 8837d9216f99048636fbb2c11347358e99e06181 (diff) | |
download | linux-ce8ab8541203f6c7be5b2eeaa97f14f1d8d44e4f.tar.xz |
[PATCH] spufs: move spu_run call to its own file
The logic for sys_spu_run keeps growing and it does
not really belong into file.c any more since we
moved away from using regular file operations to our
own syscall.
No functional change in here.
Signed-off-by: Arnd Bergmann <arndb@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/spufs/Makefile')
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/Makefile b/arch/powerpc/platforms/cell/spufs/Makefile index 9bfaba8791e3..a7cddf40e3d9 100644 --- a/arch/powerpc/platforms/cell/spufs/Makefile +++ b/arch/powerpc/platforms/cell/spufs/Makefile @@ -1,6 +1,6 @@ obj-$(CONFIG_SPU_FS) += spufs.o spufs-y += inode.o file.o context.o switch.o syscalls.o -spufs-y += sched.o backing_ops.o hw_ops.o +spufs-y += sched.o backing_ops.o hw_ops.o run.o # Rules to build switch.o with the help of SPU tool chain SPU_CROSS := spu- |