treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / arc / kernel / sys.c
blob1069446bdc589792a7506ce4036d64bfa6089b64
1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/syscalls.h>
4 #include <linux/signal.h>
5 #include <linux/unistd.h>
7 #include <asm/syscalls.h>
9 #define sys_clone sys_clone_wrapper
10 #define sys_clone3 sys_clone3_wrapper
12 #undef __SYSCALL
13 #define __SYSCALL(nr, call) [nr] = (call),
15 void *sys_call_table[NR_syscalls] = {
16 [0 ... NR_syscalls-1] = sys_ni_syscall,
17 #include <asm/unistd.h>