Skip to content

Commit

Permalink
CRIS: Export ioremap_nocache
Browse files Browse the repository at this point in the history
Signed-off-by: Jesper Nilsson <[email protected]>
  • Loading branch information
Jesper Nilsson committed Dec 19, 2014
1 parent 6eb64b8 commit 82e6df1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/cris/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 82e6df1

Please sign in to comment.