diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-02-18 17:27:34 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-18 22:31:36 +0100 |
commit | 6a1e552947b0d73310e534bf4eb09e14db1e5056 (patch) | |
tree | 384116e93db93b15ce026bb63d43943614ee2611 /arch/mips/mm/pgtable-32.c | |
parent | [MIPS] Make kernel_thread_helper() static (diff) | |
download | linux-6a1e552947b0d73310e534bf4eb09e14db1e5056.tar.xz linux-6a1e552947b0d73310e534bf4eb09e14db1e5056.zip |
[MIPS] Add external declaration of pagetable_init() to pgalloc.h
This fixes some sparse warnings.
pgtable-32.c:15:6: warning: symbol 'pgd_init' was not declared. Should it be static?
pgtable-32.c:32:13: warning: symbol 'pagetable_init' was not declared. Should it be static?
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/pgtable-32.c')
-rw-r--r-- | arch/mips/mm/pgtable-32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/mm/pgtable-32.c b/arch/mips/mm/pgtable-32.c index 4a61e624b0ec..575e4019227b 100644 --- a/arch/mips/mm/pgtable-32.c +++ b/arch/mips/mm/pgtable-32.c @@ -11,6 +11,7 @@ #include <linux/highmem.h> #include <asm/fixmap.h> #include <asm/pgtable.h> +#include <asm/pgalloc.h> void pgd_init(unsigned long page) { |