]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
dma-mapping: fix build errors on !HAS_DMA architectures
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 13 Aug 2010 07:39:18 +0000 (09:39 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 13 Aug 2010 19:03:24 +0000 (12:03 -0700)
commit 4565f0170dfc849b3629c27d769db800467baa62 "dma-mapping: unify
dma_get_cache_alignment implementations" causes build errors on
!HAS_DMA architectures/platforms like s390 and sun3:

include/linux/dma-mapping.h:145: error: static declaration of 'dma_get_cache_alignment' follows non-static declaration
include/asm-generic/dma-mapping-broken.h:73: error: previous declaration of 'dma_get_cache_alignment' was here

Fix this by adding an explicit ifdef.

Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/dma-mapping.h

index e0670a51205691b10fd0974a9bf42e49620c50ee..ce29b8151198b6c0d40b8f420efe9c2c920d9b4f 100644 (file)
@@ -142,6 +142,7 @@ static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
                return -EIO;
 }
 
+#ifdef CONFIG_HAS_DMA
 static inline int dma_get_cache_alignment(void)
 {
 #ifdef ARCH_DMA_MINALIGN
@@ -149,6 +150,7 @@ static inline int dma_get_cache_alignment(void)
 #endif
        return 1;
 }
+#endif
 
 /* flags for the coherent memory api */
 #define        DMA_MEMORY_MAP                  0x01