From: Paul Mundt Date: Mon, 16 Aug 2010 05:53:01 +0000 (+0900) Subject: sh: stub __flush_tlb_global() definition for nommu. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a8dc49b51ace4ff80cb764c250338cb9b311fb14;p=deliverable%2Flinux.git 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 --- 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) BUG(); } +void __flush_tlb_global(void) +{ +} + void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte) { }