diff options
author | Richard Kuo <rkuo@codeaurora.org> | 2011-10-31 19:35:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 10:34:18 -0400 |
commit | b9398a84590be3a828c168ed25bf1fd3d637988a (patch) | |
tree | 8467675f8d6787c7036beb3ddf599249a7903658 /arch/hexagon/kernel/syscalltab.c | |
parent | 750850189b2b7e43c03f33bf5741887e8ca07d16 (diff) |
Hexagon: Add syscalls
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Signed-off-by: Linas Vepstas <linas@codeaurora.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/hexagon/kernel/syscalltab.c')
-rw-r--r-- | arch/hexagon/kernel/syscalltab.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/hexagon/kernel/syscalltab.c b/arch/hexagon/kernel/syscalltab.c new file mode 100644 index 000000000000..c550f4177ab8 --- /dev/null +++ b/arch/hexagon/kernel/syscalltab.c | |||
@@ -0,0 +1,32 @@ | |||
1 | /* | ||
2 | * System call table for Hexagon | ||
3 | * | ||
4 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 and | ||
8 | * only version 2 as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
18 | * 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | #include <linux/syscalls.h> | ||
22 | #include <linux/signal.h> | ||
23 | #include <linux/unistd.h> | ||
24 | |||
25 | #include <asm/syscall.h> | ||
26 | |||
27 | #undef __SYSCALL | ||
28 | #define __SYSCALL(nr, call) [nr] = (call), | ||
29 | |||
30 | void *sys_call_table[__NR_syscalls] = { | ||
31 | #include <asm/unistd.h> | ||
32 | }; | ||