From: Alejandro Colomar Date: Mon, 15 Feb 2021 13:15:22 +0000 (+0100) Subject: spu_run.2: SYNOPSIS: Fix prototype parameter types X-Git-Tag: man-pages-5.11~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=beb7a3c10e5c723e05a01fa2adfbc0e778bec347;p=thirdparty%2Fman-pages.git 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 Signed-off-by: Michael Kerrisk --- diff --git a/man2/spu_run.2 b/man2/spu_run.2 index fb18797596..8b2a64ebb6 100644 --- a/man2/spu_run.2 +++ b/man2/spu_run.2 @@ -30,8 +30,7 @@ spu_run \- execute an SPU context .nf .B #include .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 :