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

CRIS: Export ioremap_nocache

Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>

+2 -1
+2 -1
arch/cris/mm/ioremap.c
··· 76 76 * Must be freed with iounmap. 77 77 */ 78 78 79 - void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size) 79 + void __iomem *ioremap_nocache(unsigned long phys_addr, unsigned long size) 80 80 { 81 81 return __ioremap(phys_addr | MEM_NON_CACHEABLE, size, 0); 82 82 } 83 + EXPORT_SYMBOL(ioremap_nocache); 83 84 84 85 void iounmap(volatile void __iomem *addr) 85 86 {