diff options
author | Frank Li <Frank.Li@nxp.com> | 2023-08-21 18:16:06 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2023-08-22 16:41:02 +0200 |
commit | 8b9aee8073a5f3e0c2e418d45a7969270ea576c6 (patch) | |
tree | 41e035b29d1b9bf4121d201cc51dd47a361c78d2 /drivers/dma/Kconfig | |
parent | dmaengine: idxd: Fix issues with PRS disable sysfs knob (diff) | |
download | linux-8b9aee8073a5f3e0c2e418d45a7969270ea576c6.tar.xz linux-8b9aee8073a5f3e0c2e418d45a7969270ea576c6.zip |
dmaengine: fsl-edma: fix build error when arch is s390
fixed build error reported by kernel test robot.
>> s390-linux-ld: fsl-edma-main.c:(.text+0xf4c): undefined reference to `devm_platform_ioremap_resource'
s390-linux-ld: drivers/dma/idma64.o: in function `idma64_platform_probe':
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202306210131.zaHVasxz-lkp@intel.com/
Signed-off-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20230821161617.2142561-2-Frank.Li@nxp.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/Kconfig')
-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 1d485fce91c8..f52d36e713f3 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -211,6 +211,7 @@ config FSL_DMA config FSL_EDMA tristate "Freescale eDMA engine support" depends on OF + depends on HAS_IOMEM select DMA_ENGINE select DMA_VIRTUAL_CHANNELS help |