aboutsummaryrefslogtreecommitdiffstats
path: root/arch/avr32/include/asm
diff options
context:
space:
mode:
authorHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>2010-12-08 18:19:33 -0500
committerHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>2011-01-13 14:41:01 -0500
commit664cb7142ced8b827e92e1851d1ed2cae922f225 (patch)
treedecbf6235cc3d21e316d529e4ac5870fdbb214e4 /arch/avr32/include/asm
parent12be8e71bf17d403b8f7866a3581ef34b77ea16f (diff)
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: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> Reported-by: Peter Huewe <PeterHuewe@gmx.de> Reported-by: Sven Schnelle <svens@stackframe.org> Cc: stable <stable@kernel.org>
Diffstat (limited to 'arch/avr32/include/asm')
-rw-r--r--arch/avr32/include/asm/syscalls.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/avr32/include/asm/syscalls.h b/arch/avr32/include/asm/syscalls.h
index ab608b70b24..730a461c606 100644
--- a/arch/avr32/include/asm/syscalls.h
+++ b/arch/avr32/include/asm/syscalls.h
@@ -16,18 +16,9 @@
16#include <linux/signal.h> 16#include <linux/signal.h>
17 17
18/* kernel/process.c */ 18/* kernel/process.c */
19asmlinkage int sys_fork(struct pt_regs *);
20asmlinkage int sys_clone(unsigned long, unsigned long, 19asmlinkage int sys_clone(unsigned long, unsigned long,
21 unsigned long, unsigned long, 20 unsigned long, unsigned long,
22 struct pt_regs *); 21 struct pt_regs *);
23asmlinkage int sys_vfork(struct pt_regs *);
24asmlinkage int sys_execve(const char __user *, char __user *__user *,
25 char __user *__user *, struct pt_regs *);
26
27/* kernel/signal.c */
28asmlinkage int sys_sigaltstack(const stack_t __user *, stack_t __user *,
29 struct pt_regs *);
30asmlinkage int sys_rt_sigreturn(struct pt_regs *);
31 22
32/* mm/cache.c */ 23/* mm/cache.c */
33asmlinkage int sys_cacheflush(int, void __user *, size_t); 24asmlinkage int sys_cacheflush(int, void __user *, size_t);