Commit 82e6df1e86e5c09d610df3da7524ea951b2ad458

Authored by Jesper Nilsson
1 parent 6eb64b8c64

CRIS: Export ioremap_nocache

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

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

arch/cris/mm/ioremap.c
... ... @@ -76,10 +76,11 @@
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 {