Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 664cb714 authored by Hans-Christian Egtvedt's avatar Hans-Christian Egtvedt
Browse files

avr32: use syscall prototypes from asm-generic instead of arch



This patch removes the redundant syscalls prototypes in the architecture
specific syscalls.h header file. These were identical with the ones in
asm-generic/syscalls.h.

Signed-off-by: default avatarHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Reported-by: default avatarPeter Huewe <PeterHuewe@gmx.de>
Reported-by: default avatarSven Schnelle <svens@stackframe.org>
Cc: stable <stable@kernel.org>
parent 12be8e71
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -16,18 +16,9 @@
#include <linux/signal.h>

/* kernel/process.c */
asmlinkage int sys_fork(struct pt_regs *);
asmlinkage int sys_clone(unsigned long, unsigned long,
			 unsigned long, unsigned long,
			 struct pt_regs *);
asmlinkage int sys_vfork(struct pt_regs *);
asmlinkage int sys_execve(const char __user *, char __user *__user *,
			  char __user *__user *, struct pt_regs *);

/* kernel/signal.c */
asmlinkage int sys_sigaltstack(const stack_t __user *, stack_t __user *,
			       struct pt_regs *);
asmlinkage int sys_rt_sigreturn(struct pt_regs *);

/* mm/cache.c */
asmlinkage int sys_cacheflush(int, void __user *, size_t);