Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[MIPS] fixmap: delete unused __set_fixmap, set_fixmap and set_fixmap_nocache

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

-10
-10
include/asm-mips/fixmap.h
··· 60 60 __end_of_fixed_addresses 61 61 }; 62 62 63 - extern void __set_fixmap(enum fixed_addresses idx, 64 - unsigned long phys, pgprot_t flags); 65 - 66 - #define set_fixmap(idx, phys) \ 67 - __set_fixmap(idx, phys, PAGE_KERNEL) 68 - /* 69 - * Some hardware wants to get fixmapped without caching. 70 - */ 71 - #define set_fixmap_nocache(idx, phys) \ 72 - __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE) 73 63 /* 74 64 * used by vmalloc.c. 75 65 *