summaryrefslogtreecommitdiff
path: root/arch/mips/mm
diff options
context:
space:
mode:
authorYanteng Si <siyanteng@loongson.cn>2021-01-27 10:38:06 +0800
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2021-01-27 21:52:01 +0100
commite6a52b8f0f810781e031096442a532fdb179a3cc (patch)
tree37c27308c1cfb682d32e8b0700d469425f38fb90 /arch/mips/mm
parentc4cbe3fb1c6f03d2295d15d089c3f6e9ddd94db6 (diff)
MIPS: mm:remove function __uncached_access()
MIPS can now use the default uncached_access like other archs. Signed-off-by: Yanteng Si <siyanteng@loongson.cn> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r--arch/mips/mm/cache.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c
index 27f4228dd24e..1754498b0717 100644
--- a/arch/mips/mm/cache.c
+++ b/arch/mips/mm/cache.c
@@ -208,11 +208,3 @@ void cpu_cache_init(void)
setup_protection_map();
}
-
-int __weak __uncached_access(struct file *file, unsigned long addr)
-{
- if (file->f_flags & O_DSYNC)
- return 1;
-
- return addr >= __pa(high_memory);
-}