mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] spi: SPI_ZYNQMP_GQSPI should depend on HAS_DMA
@ 2015-06-26 12:07 Geert Uytterhoeven
  2015-06-29  6:00 ` Ranjit Abhimanyu Waghmode
  0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2015-06-26 12:07 UTC (permalink / raw)
  To: Mark Brown, Ranjit Waghmode; +Cc: linux-spi, linux-kernel, Geert Uytterhoeven

If NO_DMA=y:

    ERROR: "dma_unmap_single" [drivers/spi/spi-zynqmp-gqspi.ko] undefined!
    ERROR: "dma_mapping_error" [drivers/spi/spi-zynqmp-gqspi.ko] undefined!
    ERROR: "dma_map_single" [drivers/spi/spi-zynqmp-gqspi.ko] undefined!

Add a dependency on HAS_DMA to fix this.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/spi/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index 1c0b261b66fcfdcb..b787b515bd73322b 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -618,7 +618,7 @@ config SPI_XTENSA_XTFPGA
 
 config SPI_ZYNQMP_GQSPI
 	tristate "Xilinx ZynqMP GQSPI controller"
-	depends on SPI_MASTER
+	depends on SPI_MASTER && HAS_DMA
 	help
 	  Enables Xilinx GQSPI controller driver for Zynq UltraScale+ MPSoC.
 
-- 
1.9.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-07 12:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-26 12:07 [PATCH] spi: SPI_ZYNQMP_GQSPI should depend on HAS_DMA Geert Uytterhoeven
2015-06-29  6:00 ` Ranjit Abhimanyu Waghmode
2015-07-07 12:43   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome