spu_create.2: SYNOPSIS: Fix prototype parameter type

The 'flags' parameter of spu_create() uses 'unsigned int'.  Fix it.

......

.../linux$ grep_syscall spu_create
arch/powerpc/platforms/cell/spu_syscalls.c:56:
SYSCALL_DEFINE4(spu_create, const char __user *, name, unsigned int, flags,
	umode_t, mode, int, neighbor_fd)
include/linux/syscalls.h:1036:
asmlinkage long sys_spu_create(const char __user *name,
		unsigned int flags, umode_t mode, int fd);
.../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:20 +01:00 committed by Michael Kerrisk
parent 9bebb17e5b
commit 0a37ff53bc
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ spu_create \- create a new spu context
.B #include <sys/types.h>
.B #include <sys/spu.h>
.PP
.BI "int spu_create(const char *" pathname ", int " flags ", mode_t " mode ","
.BI "int spu_create(const char *" pathname ", unsigned int " flags \
", mode_t " mode ,
.BI " int " neighbor_fd ");"
.fi
.PP