diff options
author | 2025-04-22 20:11:19 +0200 | |
---|---|---|
committer | 2025-04-23 18:42:46 +0530 | |
commit | 86071b369dbdf0a8f7e4424c4e0b613ba7b8ab5e (patch) | |
tree | 475dd1b10d622d5e5a76952a4781732d786757a6 /drivers/dma | |
parent | dt-bindings: dma: qcom,bam: Document dma-coherent property (diff) | |
download | linux-rng-86071b369dbdf0a8f7e4424c4e0b613ba7b8ab5e.tar.xz linux-rng-86071b369dbdf0a8f7e4424c4e0b613ba7b8ab5e.zip |
dmaengine: ARM_DMA350 should depend on ARM/ARM64
The Arm DMA-350 controller is only present on Arm-based SoCs. Hence add
dependencies on ARM and ARM64, to prevent asking the user about this
driver when configuring a kernel for a non-Arm architecture.
Fixes: 5d099706449d54b4 ("dmaengine: Add Arm DMA-350 driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/50dbaf4ce962fa7ed0208150ca987e3083da39ec.1745345400.git.geert+renesas@glider.be
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 8109f73baf10..db87dd2a07f7 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -95,6 +95,7 @@ config APPLE_ADMAC config ARM_DMA350 tristate "Arm DMA-350 support" + depends on ARM || ARM64 || COMPILE_TEST select DMA_ENGINE select DMA_VIRTUAL_CHANNELS help |