Skip to content

Commit

Permalink
MIPS: mm:remove function __uncached_access()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Yanteng Si authored and Thomas Bogendoerfer committed Jan 27, 2021
1 parent c4cbe3f commit e6a52b8
Showing 2 changed files with 0 additions and 15 deletions.
8 changes: 0 additions & 8 deletions arch/mips/mm/cache.c
Original file line number Diff line number Diff line change
@@ -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);
}
7 changes: 0 additions & 7 deletions drivers/char/mem.c
Original file line number Diff line number Diff line change
@@ -294,13 +294,6 @@ static int uncached_access(struct file *file, phys_addr_t addr)
* attribute aliases.
*/
return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
#elif defined(CONFIG_MIPS)
{
extern int __uncached_access(struct file *file,
unsigned long addr);

return __uncached_access(file, addr);
}
#else
/*
* Accessing memory above the top the kernel knows about or through a

0 comments on commit e6a52b8

Please sign in to comment.