* [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* RE: [PATCH] spi: SPI_ZYNQMP_GQSPI should depend on HAS_DMA
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
0 siblings, 1 reply; 3+ messages in thread
From: Ranjit Abhimanyu Waghmode @ 2015-06-29 6:00 UTC (permalink / raw)
To: Geert Uytterhoeven, Mark Brown, Michal Simek, Soren Brinkmann
Cc: linux-spi, linux-kernel
Acked-by: Ranjit Waghmode <ranjitw@xilinx.com>
> -----Original Message-----
> From: Geert Uytterhoeven [mailto:geert@linux-m68k.org]
> Sent: Friday, June 26, 2015 5:37 PM
> To: Mark Brown; Ranjit Abhimanyu Waghmode
> Cc: linux-spi@vger.kernel.org; linux-kernel@vger.kernel.org; Geert
> Uytterhoeven
> Subject: [PATCH] spi: SPI_ZYNQMP_GQSPI should depend on HAS_DMA
>
> 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
This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: SPI_ZYNQMP_GQSPI should depend on HAS_DMA
2015-06-29 6:00 ` Ranjit Abhimanyu Waghmode
@ 2015-07-07 12:43 ` Mark Brown
0 siblings, 0 replies; 3+ messages in thread
From: Mark Brown @ 2015-07-07 12:43 UTC (permalink / raw)
To: Ranjit Abhimanyu Waghmode
Cc: Geert Uytterhoeven, Michal Simek, Soren Brinkmann, linux-spi,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 596 bytes --]
On Mon, Jun 29, 2015 at 06:00:08AM +0000, Ranjit Abhimanyu Waghmode wrote:
> Acked-by: Ranjit Waghmode <ranjitw@xilinx.com>
Please don't top post and...
> This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.
...don't include nonsensical stuff like this in mailing list postings.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ 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