Merge tag 'rproc-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc...
[linux.git] / arch / hexagon / kernel / syscalltab.c
blobb53e2eead4ac830ff9e3a8c724fe6779d72bf24f
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * System call table for Hexagon
5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6 */
8 #include <linux/syscalls.h>
9 #include <linux/signal.h>
10 #include <linux/unistd.h>
12 #include <asm/syscall.h>
14 #define __SYSCALL(nr, call) [nr] = (call),
15 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
17 #define sys_mmap2 sys_mmap_pgoff
19 SYSCALL_DEFINE6(hexagon_fadvise64_64, int, fd, int, advice,
20 SC_ARG64(offset), SC_ARG64(len))
22 return ksys_fadvise64_64(fd, SC_VAL64(loff_t, offset), SC_VAL64(loff_t, len), advice);
24 #define sys_fadvise64_64 sys_hexagon_fadvise64_64
26 #define sys_sync_file_range sys_sync_file_range2
28 void *sys_call_table[__NR_syscalls] = {
29 #include <asm/syscall_table_32.h>