diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-08-16 14:53:01 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-08-16 14:53:01 +0900 |
commit | a8dc49b51ace4ff80cb764c250338cb9b311fb14 (patch) | |
tree | 4b00abf022faaf4e29397479b22211361905b70c /arch/sh/mm | |
parent | d5b7fb7bb8a014ee96cd39b410fc57a7dc239a91 (diff) | |
download | op-kernel-dev-a8dc49b51ace4ff80cb764c250338cb9b311fb14.zip op-kernel-dev-a8dc49b51ace4ff80cb764c250338cb9b311fb14.tar.gz |
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/mm')
-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 7694f50..36312d2 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) BUG(); } +void __flush_tlb_global(void) +{ +} + void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte) { } |