Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eaf7943cc53d9688aa10267a226165356e956ec5
Commit:     eaf7943cc53d9688aa10267a226165356e956ec5
Parent:     0e568536d94256819f17662c26c82a42e44a7a7c
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 8 13:13:27 2008 +0000
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Feb 19 17:01:30 2008 +0000

    [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: Ralf Baechle <[EMAIL PROTECTED]>
---
 include/asm-mips/mach-ip27/dma-coherence.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-mips/mach-ip27/dma-coherence.h 
b/include/asm-mips/mach-ip27/dma-coherence.h
index 3fdbbf6..ed7e622 100644
--- 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)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to