diff options
author | Jesper Nilsson <jespern@axis.com> | 2014-10-01 15:38:38 +0200 |
---|---|---|
committer | Jesper Nilsson <jespern@axis.com> | 2014-12-20 00:01:23 +0100 |
commit | 82e6df1e86e5c09d610df3da7524ea951b2ad458 (patch) | |
tree | 4efe33189024c850c94b02d9b5e0c89da0c4e45d /arch/cris/mm | |
parent | 6eb64b8c64f7177b160b4bdbabd317d523bf4bfc (diff) | |
download | op-kernel-dev-82e6df1e86e5c09d610df3da7524ea951b2ad458.zip op-kernel-dev-82e6df1e86e5c09d610df3da7524ea951b2ad458.tar.gz |
CRIS: Export ioremap_nocache
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/mm')
-rw-r--r-- | arch/cris/mm/ioremap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/cris/mm/ioremap.c b/arch/cris/mm/ioremap.c index f9ca44b..80fdb99 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) { |