diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-02 23:20:48 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-05-10 23:25:14 +1000 |
commit | 4c392e6591e3257ebd08210e1ac0a175eefd0168 (patch) | |
tree | 8102bd7afd73c883a4b9c2bebb25621f5664b87c /arch/powerpc/include/asm/syscalls.h | |
parent | f3675644e172301e88354dc7bfca96c124301145 (diff) | |
download | talos-op-linux-4c392e6591e3257ebd08210e1ac0a175eefd0168.tar.gz talos-op-linux-4c392e6591e3257ebd08210e1ac0a175eefd0168.zip |
powerpc/syscalls: switch rtas(2) to SYSCALL_DEFINE
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
[mpe: Update sys_ni.c for s/ppc_rtas/sys_rtas/]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/syscalls.h')
-rw-r--r-- | arch/powerpc/include/asm/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/syscalls.h b/arch/powerpc/include/asm/syscalls.h index 1b90a3516a35..398171fdcd9f 100644 --- a/arch/powerpc/include/asm/syscalls.h +++ b/arch/powerpc/include/asm/syscalls.h @@ -16,7 +16,7 @@ asmlinkage long sys_mmap2(unsigned long addr, size_t len, unsigned long prot, unsigned long flags, unsigned long fd, unsigned long pgoff); asmlinkage long ppc64_personality(unsigned long personality); -asmlinkage int ppc_rtas(struct rtas_args __user *uargs); +asmlinkage long sys_rtas(struct rtas_args __user *uargs); #endif /* __KERNEL__ */ #endif /* __ASM_POWERPC_SYSCALLS_H */ |