Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / openrisc / kernel / sys_call_table.c
blob3d18008310e45ac62e12359cbc31711627580da0
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * OpenRISC sys_call_table.c
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
7 * declaration.
9 * Modifications for the OpenRISC architecture:
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
13 #include <linux/syscalls.h>
14 #include <linux/signal.h>
15 #include <linux/unistd.h>
17 #include <asm/syscalls.h>
19 #undef __SYSCALL
20 #define __SYSCALL(nr, call) [nr] = (call),
22 void *sys_call_table[__NR_syscalls] = {
23 #include <asm/unistd.h>