提交 eaf7943c 编写于 作者: R Ralf Baechle

[MIPS] IP27: Add missing ~ in DMA code.

Harmless since this function is not being called on I/O coherent systems
such as IP27.
Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
上级 0e568536
......@@ -35,7 +35,7 @@ static dma_addr_t plat_map_dma_mem_page(struct device *dev, struct page *page)
static unsigned long plat_dma_addr_to_phys(dma_addr_t dma_addr)
{
return dma_addr & (0xffUL << 56);
return dma_addr & ~(0xffUL << 56);
}
static inline void plat_unmap_dma_mem(dma_addr_t dma_addr)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册