spu_run.2: SYNOPSIS: Fix prototype parameter types

The 2nd and 3rd parameters of spu_run() use 'uint32_t *'.  Fix it.

......

.../linux$ grep_syscall spu_run
arch/powerpc/platforms/cell/spu_syscalls.c:80:
SYSCALL_DEFINE3(spu_run,int, fd, __u32 __user *, unpc, __u32 __user *, ustatus)
include/linux/syscalls.h:1034:
asmlinkage long sys_spu_run(int fd, __u32 __user *unpc,
				 __u32 __user *ustatus);
.../linux$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-02-15 14:15:22 +01:00 committed by Michael Kerrisk
parent 0a37ff53bc
commit beb7a3c10e
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@ spu_run \- execute an SPU context
.nf
.B #include <sys/spu.h>
.PP
.BI "int spu_run(int " fd ", unsigned int *" npc \
", unsigned int *" event ");"
.BI "int spu_run(int " fd ", uint32_t *" npc ", uint32_t *" event );
.fi
.PP
.IR Note :