aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-08-14 20:30:39 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-08-14 20:30:39 -0400
commitcbbe2f68f678a90bebeb30b8a7fcd8aed0614879 (patch)
tree4a8ffeea96f32ff6e532fdc2667181b48d5a26ca /arch/sh/include
parent2739742c24f1a55365e71f0722bfdce8994e9c4e (diff)
sh: rename pg-mmu.c -> cache.c, enable generically.
This builds in the newly created cache.c (renamed from pg-mmu.c) for both MMU and NOMMU configurations. The kmap_coherent() stubs and alias information recorded by each CPU family takes care of doing the right thing while enabling the code to be commonly shared. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include')
-rw-r--r--arch/sh/include/asm/cacheflush.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/include/asm/cacheflush.h b/arch/sh/include/asm/cacheflush.h
index 0e87e87cc01f..4bf621e4146d 100644
--- a/arch/sh/include/asm/cacheflush.h
+++ b/arch/sh/include/asm/cacheflush.h
@@ -45,7 +45,6 @@ extern void __flush_purge_region(void *start, int size);
45extern void __flush_invalidate_region(void *start, int size); 45extern void __flush_invalidate_region(void *start, int size);
46#endif 46#endif
47 47
48#ifdef CONFIG_MMU
49#define ARCH_HAS_FLUSH_ANON_PAGE 48#define ARCH_HAS_FLUSH_ANON_PAGE
50extern void __flush_anon_page(struct page *page, unsigned long); 49extern void __flush_anon_page(struct page *page, unsigned long);
51 50
@@ -55,7 +54,6 @@ static inline void flush_anon_page(struct vm_area_struct *vma,
55 if (boot_cpu_data.dcache.n_aliases && PageAnon(page)) 54 if (boot_cpu_data.dcache.n_aliases && PageAnon(page))
56 __flush_anon_page(page, vmaddr); 55 __flush_anon_page(page, vmaddr);
57} 56}
58#endif
59 57
60#define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE 58#define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
61static inline void flush_kernel_dcache_page(struct page *page) 59static inline void flush_kernel_dcache_page(struct page *page)