1*4859bfcaSGuo Ren /* SPDX-License-Identifier: GPL-2.0 */ 2*4859bfcaSGuo Ren // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. 3*4859bfcaSGuo Ren 4*4859bfcaSGuo Ren #ifndef __ASM_CSKY_SYSCALLS_H 5*4859bfcaSGuo Ren #define __ASM_CSKY_SYSCALLS_H 6*4859bfcaSGuo Ren 7*4859bfcaSGuo Ren #include <asm-generic/syscalls.h> 8*4859bfcaSGuo Ren 9*4859bfcaSGuo Ren long sys_cacheflush(void __user *, unsigned long, int); 10*4859bfcaSGuo Ren 11*4859bfcaSGuo Ren long sys_set_thread_area(unsigned long addr); 12*4859bfcaSGuo Ren 13*4859bfcaSGuo Ren long sys_csky_fadvise64_64(int fd, int advice, loff_t offset, loff_t len); 14*4859bfcaSGuo Ren 15*4859bfcaSGuo Ren #endif /* __ASM_CSKY_SYSCALLS_H */ 16