summaryrefslogtreecommitdiffstats
path: root/arch/hexagon/kernel
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-05-22 11:07:48 +0200
committerChristoph Hellwig <hch@lst.de>2017-06-28 06:54:42 -0700
commita2b63aa2f45314bea077275c6009ba00c83826a0 (patch)
tree69d3b371920b3cc397b6e6a01457c7021ebe2bf4 /arch/hexagon/kernel
parent3be6d9b6da2ca62a4fd73a401b26f4a1dac2a47d (diff)
downloadop-kernel-dev-a2b63aa2f45314bea077275c6009ba00c83826a0.zip
op-kernel-dev-a2b63aa2f45314bea077275c6009ba00c83826a0.tar.gz
hexagon: remove arch-specific dma_supported implementation
This implementation is simply bogus - hexagon only has a simple direct mapped DMA implementation and thus doesn't care about the address. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon/kernel')
-rw-r--r--arch/hexagon/kernel/dma.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/hexagon/kernel/dma.c b/arch/hexagon/kernel/dma.c
index 8140b1c..546792d 100644
--- a/arch/hexagon/kernel/dma.c
+++ b/arch/hexagon/kernel/dma.c
@@ -35,15 +35,6 @@ static inline void *dma_addr_to_virt(dma_addr_t dma_addr)
return phys_to_virt((unsigned long) dma_addr);
}
-int dma_supported(struct device *dev, u64 mask)
-{
- if (mask == DMA_BIT_MASK(32))
- return 1;
- else
- return 0;
-}
-EXPORT_SYMBOL(dma_supported);
-
static struct gen_pool *coherent_pool;
OpenPOWER on IntegriCloud