diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-07-31 04:28:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-31 04:28:33 -0400 |
commit | e5071b5493b1dcfa98a6e8a75f56997f6d4a0c25 (patch) | |
tree | 7627dc5d314e3e3b88ca4f42bdefb392791c1a7f /include/asm-sparc64 | |
parent | 76fcdb30ae1cb28e438e5ffd4db5f49ea3d96cd7 (diff) |
[SPARC64]: Add missing dma_get_cache_alignment().
drivers/infiniband/hw/mthca/mthca_main.c: In function `mthca_init_icm':
drivers/infiniband/hw/mthca/mthca_main.c:468: error: implicit declaration of function `dma_get_cache_alignment'
Pinch the one from asm-generic/dma-mapping.h
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r-- | include/asm-sparc64/dma-mapping.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-sparc64/dma-mapping.h b/include/asm-sparc64/dma-mapping.h index 0a1006692bb2..a72a5f271f31 100644 --- a/include/asm-sparc64/dma-mapping.h +++ b/include/asm-sparc64/dma-mapping.h | |||
@@ -127,6 +127,13 @@ static inline int dma_mapping_error(dma_addr_t dma_addr) | |||
127 | return (dma_addr == DMA_ERROR_CODE); | 127 | return (dma_addr == DMA_ERROR_CODE); |
128 | } | 128 | } |
129 | 129 | ||
130 | static inline int dma_get_cache_alignment(void) | ||
131 | { | ||
132 | /* no easy way to get cache size on all processors, so return | ||
133 | * the maximum possible, to be safe */ | ||
134 | return (1 << INTERNODE_CACHE_SHIFT); | ||
135 | } | ||
136 | |||
130 | #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) | 137 | #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) |
131 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) | 138 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) |
132 | #define dma_is_consistent(d, h) (1) | 139 | #define dma_is_consistent(d, h) (1) |