aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/omap-dmaengine.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-07-22 10:16:44 +0200
committerVinod Koul <vkoul@kernel.org>2019-07-22 20:56:37 +0530
commit9c71b9eb3cb25856e29f0486eae9ee1ba864ba51 (patch)
treef0944b625136aa7f75b32779cbc42f77a417eab1 /include/linux/omap-dmaengine.h
parentLinus 5.3-rc1 (diff)
downloadwireguard-linux-9c71b9eb3cb25856e29f0486eae9ee1ba864ba51.tar.xz
wireguard-linux-9c71b9eb3cb25856e29f0486eae9ee1ba864ba51.zip
dmaengine: omap-dma: make omap_dma_filter_fn private
With the audio driver no longer referring to this function, it can be made private to the dmaengine driver itself, and the header file removed. Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Link: https://lore.kernel.org/lkml/20190307151646.1016966-1-arnd@arndb.de/ Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20190722081705.2084961-1-arnd@arndb.de Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'include/linux/omap-dmaengine.h')
-rw-r--r--include/linux/omap-dmaengine.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/linux/omap-dmaengine.h b/include/linux/omap-dmaengine.h
deleted file mode 100644
index b6e42f933c40..000000000000
--- a/include/linux/omap-dmaengine.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-/*
- * OMAP DMA Engine support
- */
-#ifndef __LINUX_OMAP_DMAENGINE_H
-#define __LINUX_OMAP_DMAENGINE_H
-
-struct dma_chan;
-
-#if defined(CONFIG_DMA_OMAP) || (defined(CONFIG_DMA_OMAP_MODULE) && defined(MODULE))
-bool omap_dma_filter_fn(struct dma_chan *, void *);
-#else
-static inline bool omap_dma_filter_fn(struct dma_chan *c, void *d)
-{
- return false;
-}
-#endif
-#endif /* __LINUX_OMAP_DMAENGINE_H */