aboutsummaryrefslogtreecommitdiffstats
path: root/arch/score
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2009-06-27 14:50:51 +0200
committerArnd Bergmann <arnd@arndb.de>2009-06-27 15:09:46 +0200
commit9fb24cc50045ec8d13d0a6c3d4d454750b466d61 (patch)
tree7d81c5d9ecf952e9e50f1d066a83825e37c6ddb9 /arch/score
parentscore: move save arg5 and arg6 instruction in front of enable_irq (diff)
downloadlinux-dev-9fb24cc50045ec8d13d0a6c3d4d454750b466d61.tar.xz
linux-dev-9fb24cc50045ec8d13d0a6c3d4d454750b466d61.zip
score: add missing #includes
Files that define a global function should #include the header with its declaration to make sure that the prototypes do not diverge. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/score')
-rw-r--r--arch/score/include/asm/ucontext.h1
-rw-r--r--arch/score/kernel/module.c1
-rw-r--r--arch/score/kernel/process.c3
-rw-r--r--arch/score/kernel/signal.c4
-rw-r--r--arch/score/kernel/sys_score.c2
5 files changed, 10 insertions, 1 deletions
diff --git a/arch/score/include/asm/ucontext.h b/arch/score/include/asm/ucontext.h
new file mode 100644
index 000000000000..9bc07b9f30fb
--- /dev/null
+++ b/arch/score/include/asm/ucontext.h
@@ -0,0 +1 @@
+#include <asm-generic/ucontext.h>
diff --git a/arch/score/kernel/module.c b/arch/score/kernel/module.c
index 4ffce7fe1560..1a625572ecc8 100644
--- a/arch/score/kernel/module.c
+++ b/arch/score/kernel/module.c
@@ -23,6 +23,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <linux/moduleloader.h>
#include <linux/module.h>
#include <linux/vmalloc.h>
diff --git a/arch/score/kernel/process.c b/arch/score/kernel/process.c
index d93966f7ac83..25d08030a883 100644
--- a/arch/score/kernel/process.c
+++ b/arch/score/kernel/process.c
@@ -24,6 +24,9 @@
*/
#include <linux/module.h>
+#include <linux/reboot.h>
+#include <linux/elfcore.h>
+#include <linux/pm.h>
void (*pm_power_off)(void);
EXPORT_SYMBOL(pm_power_off);
diff --git a/arch/score/kernel/signal.c b/arch/score/kernel/signal.c
index 5c004084d17d..252f6d95ad9e 100644
--- a/arch/score/kernel/signal.c
+++ b/arch/score/kernel/signal.c
@@ -27,7 +27,9 @@
#include <linux/signal.h>
#include <linux/unistd.h>
#include <linux/uaccess.h>
-#include <asm-generic/ucontext.h>
+
+#include <asm/syscalls.h>
+#include <asm/ucontext.h>
#include <asm/cacheflush.h>
diff --git a/arch/score/kernel/sys_score.c b/arch/score/kernel/sys_score.c
index 331886104325..eb4d2d3b97ad 100644
--- a/arch/score/kernel/sys_score.c
+++ b/arch/score/kernel/sys_score.c
@@ -28,6 +28,8 @@
#include <linux/mman.h>
#include <linux/module.h>
#include <linux/unistd.h>
+#include <linux/syscalls.h>
+#include <asm/syscalls.h>
unsigned long shm_align_mask = PAGE_SIZE - 1;
EXPORT_SYMBOL(shm_align_mask);