Skip to content
Snippets Groups Projects
Commit 7be35ddd authored by Thomas Chou's avatar Thomas Chou
Browse files

nios2: dma-mapping.h: change ioremap to map_physmem


Change ioremap() to map_physmem(), as it is more used in u-boot.

Signed-off-by: default avatarThomas Chou <thomas@wytron.com.tw>
Reviewed-by: default avatarMarek Vasut <marex@denx.de>
parent 079bfc5d
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,6 @@ static inline void *dma_alloc_coherent(size_t len, unsigned long *handle)
if (handle)
*handle = addr;
return ioremap(addr, len);
return map_physmem(addr, len, MAP_NOCACHE);
}
#endif /* __ASM_NIOS2_DMA_MAPPING_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment