]> git.baikalelectronics.ru Git - kernel.git/commit
dmaengine: SF_PDMA depends on HAS_IOMEM
authorRandy Dunlap <rdunlap@infradead.org>
Sat, 22 May 2021 02:13:12 +0000 (19:13 -0700)
committerVinod Koul <vkoul@kernel.org>
Mon, 31 May 2021 04:14:14 +0000 (09:44 +0530)
commit47d5816b9ada861994577c81fccc290e037dcbc6
tree41f8e8bf390b81e43e25f6d81984881f359068ce
parent157c6773a96b247be8ff3cf1a77654ac8c0b00b5
dmaengine: SF_PDMA depends on HAS_IOMEM

When CONFIG_HAS_IOMEM is not set/enabled, certain iomap() family
functions [including ioremap(), devm_ioremap(), etc.] are not
available.
Drivers that use these functions should depend on HAS_IOMEM so that
they do not cause build errors.

Mends this build error:
s390-linux-ld: drivers/dma/sf-pdma/sf-pdma.o: in function `sf_pdma_probe':
sf-pdma.c:(.text+0x1668): undefined reference to `devm_ioremap_resource'

Fixes: e12a42e8ce9c ("dmaengine: sf-pdma: add platform DMA support for HiFive Unleashed A00")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Green Wan <green.wan@sifive.com>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org
Link: https://lore.kernel.org/r/20210522021313.16405-4-rdunlap@infradead.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/sf-pdma/Kconfig