aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2013-08-22 17:03:24 -0400
committerVinod Koul <vinod.koul@intel.com>2013-08-25 06:43:19 -0400
commit764480413b7206d295eb6ff58efb057d56aff08b (patch)
tree9f5e4294d55e35eac8e389ab26221ac18f27f4de
parentc095ba7224d8edc71dcef0d655911399a8bd4a3f (diff)
dma/Kconfig: TI_EDMA needs to be boolean
Fix: arch/arm/common/built-in.o: undefined reference to `edma_filter_fn' seen with "make ARCH=arm allmodconfig" Commit 6cba4355 (ARM: edma: Add DT and runtime PM support to the private EDMA API) adds a dependency on edma_filter_fn() into arch/arm/common/edma.c. Since this file is always built into the kernel, edma_filter_fn() must be built into the kernel as well. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r--drivers/dma/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig
index 6825957c97fb..643d7c7a0d8e 100644
--- a/drivers/dma/Kconfig
+++ b/drivers/dma/Kconfig
@@ -194,7 +194,7 @@ config SIRF_DMA
194 Enable support for the CSR SiRFprimaII DMA engine. 194 Enable support for the CSR SiRFprimaII DMA engine.
195 195
196config TI_EDMA 196config TI_EDMA
197 tristate "TI EDMA support" 197 bool "TI EDMA support"
198 depends on ARCH_DAVINCI || ARCH_OMAP 198 depends on ARCH_DAVINCI || ARCH_OMAP
199 select DMA_ENGINE 199 select DMA_ENGINE
200 select DMA_VIRTUAL_CHANNELS 200 select DMA_VIRTUAL_CHANNELS