aboutsummaryrefslogtreecommitdiffstats
path: root/arch/h8300/kernel/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/h8300/kernel/syscalls.c')
-rw-r--r--arch/h8300/kernel/syscalls.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/h8300/kernel/syscalls.c b/arch/h8300/kernel/syscalls.c
deleted file mode 100644
index 9022036fb3d2..000000000000
--- a/arch/h8300/kernel/syscalls.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include <linux/syscalls.h>
-#include <linux/signal.h>
-#include <linux/unistd.h>
-
-#undef __SYSCALL
-#define __SYSCALL(nr, call) [nr] = (call),
-
-#define sys_mmap2 sys_mmap_pgoff
-
-asmlinkage int sys_rt_sigreturn(void);
-
-void *_sys_call_table[__NR_syscalls] = {
-#include <asm/unistd.h>
-};