diff options
author | Ludovic Desroches <ludovic.desroches@atmel.com> | 2014-11-13 11:52:39 +0100 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-11-17 14:07:20 +0530 |
commit | 6e5ae29b6dbdb60ef60f769d7b80274d62e6fbcf (patch) | |
tree | 64638fb4d7ba924479034130b573a65fa4b24250 /drivers/dma/Kconfig | |
parent | 82e2424635f4c0d9af6670638889be81f56ea225 (diff) |
dmaengine: at_xdmac: prefer usage of readl/writel_relaxed
_relaxed version of readl and writel are not implemented on all
architecture so COMPILE_TEST has to be removed in order to not cause
some build failures.
Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/Kconfig')
-rw-r--r-- | drivers/dma/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 607271a999a..8b6fb0f1100 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -109,7 +109,7 @@ config AT_HDMAC config AT_XDMAC tristate "Atmel XDMA support" - depends on (ARCH_AT91 || COMPILE_TEST) + depends on ARCH_AT91 select DMA_ENGINE help Support the Atmel XDMA controller. |