summaryrefslogtreecommitdiff
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.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/nios2/kernel/syscall_table.c b/arch/nios2/kernel/syscall_table.c
new file mode 100644
index 000000000000..c99818aac9e1
--- /dev/null
+++ b/arch/nios2/kernel/syscall_table.c
@@ -0,0 +1,21 @@
+// 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>
+
+#define __SYSCALL(nr, call) [nr] = (call),
+#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
+
+#define sys_mmap2 sys_mmap_pgoff
+#define sys_clone3 __sys_clone3
+
+void *sys_call_table[__NR_syscalls] = {
+ [0 ... __NR_syscalls-1] = sys_ni_syscall,
+#include <asm/syscall_table_32.h>
+};