diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-12-16 20:52:11 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:19:00 -0500 |
commit | 9acb98fb7ce948063a2269b4f8db83d6bef7e2b0 (patch) | |
tree | f515f951bc97bf6c24e57225554802e7671310a8 /arch | |
parent | d7ef4fb3acd1c1b141202c728ab3a78140a44eb7 (diff) |
sh: Stub in page_table_range_init() on nommu.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/mm/tlb-nommu.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sh/mm/tlb-nommu.c b/arch/sh/mm/tlb-nommu.c index 1ccca7c0532e..8842620604c3 100644 --- a/arch/sh/mm/tlb-nommu.c +++ b/arch/sh/mm/tlb-nommu.c | |||
@@ -9,6 +9,7 @@ | |||
9 | */ | 9 | */ |
10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
11 | #include <linux/mm.h> | 11 | #include <linux/mm.h> |
12 | #include <asm/pgtable.h> | ||
12 | 13 | ||
13 | /* | 14 | /* |
14 | * Nothing too terribly exciting here .. | 15 | * Nothing too terribly exciting here .. |
@@ -49,3 +50,8 @@ void update_mmu_cache(struct vm_area_struct * vma, | |||
49 | { | 50 | { |
50 | BUG(); | 51 | BUG(); |
51 | } | 52 | } |
53 | |||
54 | void __init page_table_range_init(unsigned long start, unsigned long end, | ||
55 | pgd_t *pgd_base) | ||
56 | { | ||
57 | } | ||