diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-10-04 06:52:32 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-10-04 06:52:32 -0400 |
commit | 6cc15e9fdce49e6b3d00eba4dfcdfbe1496f2114 (patch) | |
tree | e65be4f50df6c0d5c8026585da30379267f25ec6 /arch/sh | |
parent | 01bd5e9ef2ead97059a1930de43942bdfc9e8755 (diff) |
sh: Rip out left-over nommu cond syscall cruft.
At some point way back when (2.5 or so) quite a few syscalls hadn't
yet been wired up as cond_syscalls(), so we opted to just do direct
sys_ni_syscall wrapping in the assembly code instead. That's all
been fixed up since then, so we can drop the wrapping.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/syscalls.S | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/sh/kernel/syscalls.S b/arch/sh/kernel/syscalls.S index 91fb7024e06f..10bec45415ba 100644 --- a/arch/sh/kernel/syscalls.S +++ b/arch/sh/kernel/syscalls.S | |||
@@ -14,24 +14,6 @@ | |||
14 | #include <linux/sys.h> | 14 | #include <linux/sys.h> |
15 | #include <linux/linkage.h> | 15 | #include <linux/linkage.h> |
16 | 16 | ||
17 | #if !defined(CONFIG_NFSD) && !defined(CONFIG_NFSD_MODULE) | ||
18 | #define sys_nfsservctl sys_ni_syscall | ||
19 | #endif | ||
20 | |||
21 | #if !defined(CONFIG_MMU) | ||
22 | #define sys_madvise sys_ni_syscall | ||
23 | #define sys_readahead sys_ni_syscall | ||
24 | #define sys_mprotect sys_ni_syscall | ||
25 | #define sys_msync sys_ni_syscall | ||
26 | #define sys_mlock sys_ni_syscall | ||
27 | #define sys_munlock sys_ni_syscall | ||
28 | #define sys_mlockall sys_ni_syscall | ||
29 | #define sys_munlockall sys_ni_syscall | ||
30 | #define sys_mremap sys_ni_syscall | ||
31 | #define sys_mincore sys_ni_syscall | ||
32 | #define sys_remap_file_pages sys_ni_syscall | ||
33 | #endif | ||
34 | |||
35 | .data | 17 | .data |
36 | ENTRY(sys_call_table) | 18 | ENTRY(sys_call_table) |
37 | .long sys_restart_syscall /* 0 - old "setup()" system call*/ | 19 | .long sys_restart_syscall /* 0 - old "setup()" system call*/ |