CRIS: Export ioremap_nocache
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
This commit is contained in:
parent
6eb64b8c64
commit
82e6df1e86
1 changed files with 2 additions and 1 deletions
|
@ -76,10 +76,11 @@ void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned l
|
||||||
* Must be freed with iounmap.
|
* 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);
|
return __ioremap(phys_addr | MEM_NON_CACHEABLE, size, 0);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(ioremap_nocache);
|
||||||
|
|
||||||
void iounmap(volatile void __iomem *addr)
|
void iounmap(volatile void __iomem *addr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue