diff options
author | Michael Tretter <m.tretter@pengutronix.de> | 2021-08-26 12:47:38 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-10-01 14:56:30 +0300 |
commit | 7073b5a8bd6ea641b41568e2899b0977f79134e3 (patch) | |
tree | c32859a9fb889ced1c52064e62038174fecdcc5b /drivers/dma | |
parent | 4c0f93eb80fbaafcb2cefa09ed1d6c5099dc1939 (diff) | |
download | linux-7073b5a8bd6ea641b41568e2899b0977f79134e3.tar.xz |
dmaengine: zynqmp_dma: enable COMPILE_TEST
The driver doesn't use anything architecture specific. Allow the
compilation on other architectures as well.
Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
Link: https://lore.kernel.org/r/20210826094742.1302009-4-m.tretter@pengutronix.de
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-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 80c2c03cb014..6bcdb4e6a0d1 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -717,7 +717,7 @@ config XILINX_DMA config XILINX_ZYNQMP_DMA tristate "Xilinx ZynqMP DMA Engine" - depends on (ARCH_ZYNQ || MICROBLAZE || ARM64) + depends on ARCH_ZYNQ || MICROBLAZE || ARM64 || COMPILE_TEST select DMA_ENGINE help Enable support for Xilinx ZynqMP DMA controller. |