@@ -171,15 +171,7 @@ config TEGRA20_APB_DMA
This DMA controller transfers data from memory to peripheral fifo
or vice versa. It does not support memory to memory data transfer.
-
-
-config SH_DMAE
- tristate "Renesas SuperH DMAC support"
- depends on (SUPERH && SH_DMA) || (ARM && ARCH_SHMOBILE)
- depends on !SH_DMA_API
- select DMA_ENGINE
- help
- Enable support for the Renesas SuperH DMA controllers.
+source "drivers/dma/sh/Kconfig"
config COH901318
bool "ST-Ericsson COH901318 DMA support"
new file mode 100644
@@ -0,0 +1,11 @@
+#
+# DMA engine configuration for sh
+#
+
+config SH_DMAE
+ tristate "Renesas SuperH DMAC support"
+ depends on (SUPERH && SH_DMA) || (ARM && ARCH_SHMOBILE)
+ depends on !SH_DMA_API
+ select DMA_ENGINE
+ help
+ Enable support for the Renesas SuperH DMA controllers.
This patch adds Kconfig in the drivers/dma/sh. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> --- about v6: - There is a new patch, but I say v6. drivers/dma/Kconfig | 10 +--------- drivers/dma/sh/Kconfig | 11 +++++++++++ 2 files changed, 12 insertions(+), 9 deletions(-) create mode 100644 drivers/dma/sh/Kconfig