projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e56853
)
[MIPS] IP27: Add missing ~ in DMA code.
author
Ralf Baechle
<ralf@linux-mips.org>
Fri, 8 Feb 2008 13:13:27 +0000
(13:13 +0000)
committer
Ralf Baechle
<ralf@linux-mips.org>
Tue, 19 Feb 2008 17:01:30 +0000
(17:01 +0000)
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>
include/asm-mips/mach-ip27/dma-coherence.h
patch
|
blob
|
history
diff --git
a/include/asm-mips/mach-ip27/dma-coherence.h
b/include/asm-mips/mach-ip27/dma-coherence.h
index 3fdbbf68e9522a91897f655d79cdf6ad44df26c6..ed7e6222dc1512c879d6122cd5845578c2f670df 100644
(file)
--- a/
include/asm-mips/mach-ip27/dma-coherence.h
+++ b/
include/asm-mips/mach-ip27/dma-coherence.h
@@
-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)