aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/score/kernel/sys_call_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/score/kernel/sys_call_table.c')
-rw-r--r--arch/score/kernel/sys_call_table.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/score/kernel/sys_call_table.c b/arch/score/kernel/sys_call_table.c
deleted file mode 100644
index 9e6ae793e690..000000000000
--- a/arch/score/kernel/sys_call_table.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include <linux/syscalls.h>
-#include <linux/signal.h>
-#include <linux/unistd.h>
-
-#include <asm/syscalls.h>
-
-#undef __SYSCALL
-#define __SYSCALL(nr, call) [nr] = (call),
-
-void *sys_call_table[__NR_syscalls] = {
-#include <asm/unistd.h>
-};