diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-06-27 08:50:51 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2009-06-27 09:09:46 -0400 |
commit | 9fb24cc50045ec8d13d0a6c3d4d454750b466d61 (patch) | |
tree | 7d81c5d9ecf952e9e50f1d066a83825e37c6ddb9 /arch/score/kernel/module.c | |
parent | e831a9c6186ca1f63fdf2f41628193dd690ab440 (diff) |
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/kernel/module.c')
-rw-r--r-- | arch/score/kernel/module.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ | |||
23 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 23 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <linux/moduleloader.h> | ||
26 | #include <linux/module.h> | 27 | #include <linux/module.h> |
27 | #include <linux/vmalloc.h> | 28 | #include <linux/vmalloc.h> |
28 | 29 | ||