diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-08-16 01:53:01 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-08-16 01:53:01 -0400 |
commit | a8dc49b51ace4ff80cb764c250338cb9b311fb14 (patch) | |
tree | 4b00abf022faaf4e29397479b22211361905b70c /arch/sh | |
parent | d5b7fb7bb8a014ee96cd39b410fc57a7dc239a91 (diff) |
sh: stub __flush_tlb_global() definition for nommu.
This fixes up the nommu build with a stub definition for
__flush_tlb_global(), now used by the reboot code.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/mm/nommu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/mm/nommu.c b/arch/sh/mm/nommu.c index 7694f50c9034..36312d254faf 100644 --- a/arch/sh/mm/nommu.c +++ b/arch/sh/mm/nommu.c | |||
@@ -67,6 +67,10 @@ void local_flush_tlb_kernel_range(unsigned long start, unsigned long end) | |||
67 | BUG(); | 67 | BUG(); |
68 | } | 68 | } |
69 | 69 | ||
70 | void __flush_tlb_global(void) | ||
71 | { | ||
72 | } | ||
73 | |||
70 | void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte) | 74 | void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte) |
71 | { | 75 | { |
72 | } | 76 | } |