drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / csky / kernel / syscall_table.c
bloba6eb91a0e2f68ab5257bb6d99fe6ff67da0bcf0c
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
4 #include <linux/syscalls.h>
5 #include <asm/syscalls.h>
7 #undef __SYSCALL
8 #define __SYSCALL(nr, call)[nr] = (call),
9 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
11 #define sys_fadvise64_64 sys_csky_fadvise64_64
12 #define sys_sync_file_range sys_sync_file_range2
13 void * const sys_call_table[__NR_syscalls] __page_aligned_data = {
14 [0 ... __NR_syscalls - 1] = sys_ni_syscall,
15 #include <asm/syscall_table_32.h>