* [PATCH] spu_run.2: SYNOPSIS: Fix prototype parameter types
@ 2021-02-15 13:15 Alejandro Colomar
2021-02-15 19:59 ` Michael Kerrisk (man-pages)
0 siblings, 1 reply; 2+ messages in thread
From: Alejandro Colomar @ 2021-02-15 13:15 UTC (permalink / raw)
To: mtk.manpages; +Cc: Alejandro Colomar, linux-man
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>
---
man2/spu_run.2 | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/man2/spu_run.2 b/man2/spu_run.2
index fb1879759..8b2a64ebb 100644
--- a/man2/spu_run.2
+++ b/man2/spu_run.2
@@ -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 :
--
2.30.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] spu_run.2: SYNOPSIS: Fix prototype parameter types
2021-02-15 13:15 [PATCH] spu_run.2: SYNOPSIS: Fix prototype parameter types Alejandro Colomar
@ 2021-02-15 19:59 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-02-15 19:59 UTC (permalink / raw)
To: Alejandro Colomar; +Cc: mtk.manpages, linux-man
Hi Alex,
On 2/15/21 2:15 PM, Alejandro Colomar wrote:
> 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>
Thanks! Patch applied.
Cheers,
Michael
> ---
> man2/spu_run.2 | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/man2/spu_run.2 b/man2/spu_run.2
> index fb1879759..8b2a64ebb 100644
> --- a/man2/spu_run.2
> +++ b/man2/spu_run.2
> @@ -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 :
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-02-15 20:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-15 13:15 [PATCH] spu_run.2: SYNOPSIS: Fix prototype parameter types Alejandro Colomar
2021-02-15 19:59 ` Michael Kerrisk (man-pages)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox