summaryrefslogtreecommitdiff
path: root/drivers/dma
diff options
context:
space:
mode:
authorHuang Shijie <b32955@freescale.com>2012-01-31 10:54:24 +0800
committerHuang Shijie <b32955@freescale.com>2012-01-31 13:26:22 +0800
commita9925c757e2fe73f5354c904c8be2eb6e0e630d2 (patch)
tree0faa9bec1aab46b4769b50974db73319144e1e4d /drivers/dma
parentb473ba85ec124214af32ae7af0d1304b3c84df76 (diff)
ENGR00173369-2 Revert "ENGR00139247-6 DMA : add DMA support for imx6q"
This reverts commit ab11e98c15ecb29eaf93114cb928478c98d637e9. Signed-off-by: Huang Shijie <b32955@freescale.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/Kconfig2
-rw-r--r--drivers/dma/mxs-dma.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig
index 4716c736045b..34385733562d 100644
--- a/drivers/dma/Kconfig
+++ b/drivers/dma/Kconfig
@@ -240,7 +240,7 @@ config IMX_DMA
config MXS_DMA
bool "MXS DMA support"
- depends on SOC_IMX23 || SOC_IMX28 || SOC_IMX50 || SOC_IMX6Q
+ depends on SOC_IMX23 || SOC_IMX28 || SOC_IMX50
select DMA_ENGINE
help
Support the MXS DMA engine. This engine including APBH-DMA
diff --git a/drivers/dma/mxs-dma.c b/drivers/dma/mxs-dma.c
index dfb0a6d0da8f..a44c2ba1d6e3 100644
--- a/drivers/dma/mxs-dma.c
+++ b/drivers/dma/mxs-dma.c
@@ -27,7 +27,7 @@
#include <mach/mxs.h>
#include <mach/dma.h>
#include <mach/common.h>
-#if defined(CONFIG_SOC_IMX50) || defined(CONFIG_SOC_IMX6Q)
+#ifdef CONFIG_SOC_IMX50
#include <mach/system.h>
#endif
@@ -587,7 +587,7 @@ static int __init mxs_dma_init(struct mxs_dma_engine *mxs_dma)
#if defined(CONFIG_SOC_IMX23) || defined(CONFIG_SOC_IMX28)
ret = mxs_reset_block(mxs_dma->base);
-#elif defined(CONFIG_SOC_IMX50) || defined(CONFIG_SOC_IMX6Q)
+#elif defined(CONFIG_SOC_IMX50)
ret = mxs_reset_block(mxs_dma->base, true);
#endif