diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-02-14 16:40:18 +0900 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2020-02-19 21:27:30 +0800 |
commit | 950c5968672a22a65790534234d1106bd1303652 (patch) | |
tree | dcdcf7cf9c5f247f17ce4fabd18ce85e238dacb9 /arch/nds32 | |
parent | c22c0dbd7d3bb7ce47779b757d567d2e7746744b (diff) | |
download | u-boot-950c5968672a22a65790534234d1106bd1303652.tar.gz u-boot-950c5968672a22a65790534234d1106bd1303652.tar.bz2 u-boot-950c5968672a22a65790534234d1106bd1303652.zip |
dma-mapping: fix the prototype of dma_unmap_single()
dma_unmap_single() takes the dma address, not virtual address.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/nds32')
-rw-r--r-- | arch/nds32/include/asm/dma-mapping.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/nds32/include/asm/dma-mapping.h b/arch/nds32/include/asm/dma-mapping.h index 9387dec347..784f489db5 100644 --- a/arch/nds32/include/asm/dma-mapping.h +++ b/arch/nds32/include/asm/dma-mapping.h @@ -34,11 +34,9 @@ static inline dma_addr_t dma_map_single(void *vaddr, size_t len, return addr; } -static inline void dma_unmap_single(volatile void *vaddr, size_t len, +static inline void dma_unmap_single(dma_addr_t addr, size_t len, enum dma_data_direction dir) { - unsigned long addr = (unsigned long)vaddr; - len = ALIGN(len, ARCH_DMA_MINALIGN); if (dir != DMA_TO_DEVICE) |