diff options
| author | Kishon Vijay Abraham I <[email protected]> | 2015-02-23 18:39:49 +0530 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2015-04-14 05:48:08 +0200 |
| commit | aecbf879659f7b54e7712b3a3f05ce250c9c9f80 (patch) | |
| tree | 6fb44e875587c7108ef39b7d198bc695c36dece7 | |
| parent | 103fa06cfea51403db4005dbf4835b870b48db85 (diff) | |
include: asm: dma-mapping: get rid of the compilation warning in udc-core
Fixed the following warning here.
"warning: ‘dma_alloc_coherent’ defined but not used" while compiling
udc-core
Signed-off-by: Kishon Vijay Abraham I <[email protected]>
Reviewed-by: Lukasz Majewski <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/dma-mapping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h index 55a4e266a0a..14f00efd2b8 100644 --- a/arch/arm/include/asm/dma-mapping.h +++ b/arch/arm/include/asm/dma-mapping.h @@ -14,7 +14,7 @@ enum dma_data_direction { DMA_FROM_DEVICE = 2, }; -static void *dma_alloc_coherent(size_t len, unsigned long *handle) +static inline void *dma_alloc_coherent(size_t len, unsigned long *handle) { *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len); return (void *)*handle; |
