Skip to content

Commit

Permalink
[MIPS] IP27: Add missing ~ in DMA code.
Browse files Browse the repository at this point in the history
Harmless since this function is not being called on I/O coherent systems
such as IP27.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Feb 19, 2008
1 parent 0e56853 commit eaf7943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-mips/mach-ip27/dma-coherence.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit eaf7943

Please sign in to comment.