nfs: move nfs_file_operations declaration to bottom of file.c (try #2)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / openrisc / kernel / sys_call_table.c
blobe1f8ce8c72a83477c48796bf20b9270fefd1640e
1 /*
2 * OpenRISC sys_call_table.c
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/syscalls.h>
18 #include <linux/signal.h>
19 #include <linux/unistd.h>
21 #include <asm/syscalls.h>
23 #undef __SYSCALL
24 #define __SYSCALL(nr, call) [nr] = (call),
26 void *sys_call_table[__NR_syscalls] = {
27 #include <asm/unistd.h>