summaryrefslogtreecommitdiffstats
path: root/arch/nios2/kernel/syscall_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/nios2/kernel/syscall_table.c')
-rw-r--r--arch/nios2/kernel/syscall_table.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/nios2/kernel/syscall_table.c b/arch/nios2/kernel/syscall_table.c
new file mode 100644
index 000000000..c2875a6dd
--- /dev/null
+++ b/arch/nios2/kernel/syscall_table.c
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright Altera Corporation (C) 2013. All rights reserved
+ */
+
+#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] = {
+ [0 ... __NR_syscalls-1] = sys_ni_syscall,
+#include <asm/unistd.h>
+};