Commit 4ec3c3d0 authored by Jeremy Kerr's avatar Jeremy Kerr Committed by Paul Mackerras

[POWERPC] spufs: Remove asmlinkage from spufs_calls

spu_create and spu_run are wrapped by the cell syscall layer, so
we don't need the asmlinkage.
Signed-off-by: default avatarJeremy Kerr <jk@ozlabs.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 98f06978
...@@ -239,10 +239,10 @@ extern long spu_sys_callback(struct spu_syscall_block *s); ...@@ -239,10 +239,10 @@ extern long spu_sys_callback(struct spu_syscall_block *s);
/* syscalls implemented in spufs */ /* syscalls implemented in spufs */
struct file; struct file;
struct spufs_calls { struct spufs_calls {
asmlinkage long (*create_thread)(const char __user *name, long (*create_thread)(const char __user *name,
unsigned int flags, mode_t mode, unsigned int flags, mode_t mode,
struct file *neighbor); struct file *neighbor);
asmlinkage long (*spu_run)(struct file *filp, __u32 __user *unpc, long (*spu_run)(struct file *filp, __u32 __user *unpc,
__u32 __user *ustatus); __u32 __user *ustatus);
struct module *owner; struct module *owner;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment