summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/dma-mapping.h
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2015-02-23 18:39:49 +0530
committerMarek Vasut <marex@denx.de>2015-04-14 05:48:08 +0200
commitaecbf879659f7b54e7712b3a3f05ce250c9c9f80 (patch)
tree6fb44e875587c7108ef39b7d198bc695c36dece7 /arch/arm/include/asm/dma-mapping.h
parent103fa06cfea51403db4005dbf4835b870b48db85 (diff)
downloadtalos-obmc-uboot-aecbf879659f7b54e7712b3a3f05ce250c9c9f80.tar.gz
talos-obmc-uboot-aecbf879659f7b54e7712b3a3f05ce250c9c9f80.zip
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 <kishon@ti.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'arch/arm/include/asm/dma-mapping.h')
-rw-r--r--arch/arm/include/asm/dma-mapping.h2
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 55a4e266a0..14f00efd2b 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;
OpenPOWER on IntegriCloud