[POWERPC] spufs: Remove asmlinkage from do_spu_create
do_spu_create doesn't need the asmlinkage qualifier; remove it. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
1238819a41
commit
1e8b0f6d1b
1 changed files with 2 additions and 2 deletions
|
@ -76,8 +76,8 @@ asmlinkage long sys_spu_run(int fd, __u32 __user *unpc, __u32 __user *ustatus)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static asmlinkage long do_spu_create(const char __user *pathname,
|
static long do_spu_create(const char __user *pathname, unsigned int flags,
|
||||||
unsigned int flags, mode_t mode, struct file *neighbor)
|
mode_t mode, struct file *neighbor)
|
||||||
{
|
{
|
||||||
char *tmp;
|
char *tmp;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in a new issue