From: Jesper Nilsson Date: Wed, 1 Oct 2014 13:38:38 +0000 (+0200) Subject: CRIS: Export ioremap_nocache X-Git-Tag: v6.6-pxa1908~21991^2~10 X-Git-Url: https://git.dujemihanovic.xyz/?a=commitdiff_plain;h=82e6df1e86e5c09d610df3da7524ea951b2ad458;p=linux.git CRIS: Export ioremap_nocache Signed-off-by: Jesper Nilsson --- diff --git a/arch/cris/mm/ioremap.c b/arch/cris/mm/ioremap.c index f9ca44bdea20..80fdb995a8ce 100644 --- a/arch/cris/mm/ioremap.c +++ b/arch/cris/mm/ioremap.c @@ -76,10 +76,11 @@ void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned l * Must be freed with iounmap. */ -void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size) +void __iomem *ioremap_nocache(unsigned long phys_addr, unsigned long size) { return __ioremap(phys_addr | MEM_NON_CACHEABLE, size, 0); } +EXPORT_SYMBOL(ioremap_nocache); void iounmap(volatile void __iomem *addr) {