David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. | ||||
3 | |||||
4 | #include <linux/syscalls.h> | ||||
5 | #include <asm/syscalls.h> | ||||
6 | |||||
7 | #undef __SYSCALL | ||||
8 | #define __SYSCALL(nr, call)[nr] = (call), | ||||
9 | |||||
10 | #define sys_fadvise64_64 sys_csky_fadvise64_64 | ||||
11 | void * const sys_call_table[__NR_syscalls] __page_aligned_data = { | ||||
12 | [0 ... __NR_syscalls - 1] = sys_ni_syscall, | ||||
13 | #include <asm/unistd.h> | ||||
14 | }; |