diff options
| author | Mike Frysinger <vapier.adi@gmail.com> | 2008-11-18 04:48:22 -0500 |
|---|---|---|
| committer | Bryan Wu <cooloney@kernel.org> | 2008-11-18 04:48:22 -0500 |
| commit | 62273eeb6ac516ab0abf49417378726ad8875b03 (patch) | |
| tree | 038957e2a8f409137fcd341304ace89cdc487573 | |
| parent | 4213cb64004e38b3e78424f30e1e638f8004c7a8 (diff) | |
Blackfin arch: fix a broken define in dma-mapping
dma_mapping_error is an actual function, so fix broken define with a
real inline stub
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
| -rw-r--r-- | arch/blackfin/include/asm/dma-mapping.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/dma-mapping.h b/arch/blackfin/include/asm/dma-mapping.h index ede748d67efd..d7d9148e433c 100644 --- a/arch/blackfin/include/asm/dma-mapping.h +++ b/arch/blackfin/include/asm/dma-mapping.h | |||
| @@ -15,7 +15,11 @@ void dma_free_coherent(struct device *dev, size_t size, void *vaddr, | |||
| 15 | #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) | 15 | #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) |
| 16 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) | 16 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) |
| 17 | 17 | ||
| 18 | #define dma_mapping_error | 18 | static inline |
| 19 | int dma_mapping_error(struct device *dev, dma_addr_t dma_addr) | ||
| 20 | { | ||
| 21 | return 0; | ||
| 22 | } | ||
| 19 | 23 | ||
| 20 | /* | 24 | /* |
| 21 | * Map a single buffer of the indicated size for DMA in streaming mode. | 25 | * Map a single buffer of the indicated size for DMA in streaming mode. |
