Skip to content

Commit

Permalink
[POWERPC] spufs: Remove asmlinkage from do_spu_create
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeremy Kerr authored and Paul Mackerras committed Sep 19, 2007
1 parent 1238819 commit 1e8b0f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/cell/spufs/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ asmlinkage long sys_spu_run(int fd, __u32 __user *unpc, __u32 __user *ustatus)
}
#endif

static asmlinkage long do_spu_create(const char __user *pathname,
unsigned int flags, mode_t mode, struct file *neighbor)
static long do_spu_create(const char __user *pathname, unsigned int flags,
mode_t mode, struct file *neighbor)
{
char *tmp;
int ret;
Expand Down

0 comments on commit 1e8b0f6

Please sign in to comment.