]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
spi: spi-ti-qspi: Use dma_engine wrapper for dma memcpy call
authorVignesh R <vigneshr@ti.com>
Fri, 24 Mar 2017 06:42:15 +0000 (12:12 +0530)
committerMark Brown <broonie@kernel.org>
Fri, 24 Mar 2017 18:39:53 +0000 (18:39 +0000)
Instead of calling device_prep_dma_memcpy() directly with dma_device
pointer, use the newly introduced dmaengine_prep_dma_memcpy() wrapper
API.

Signed-off-by: Vignesh R <vigneshr@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-ti-qspi.c

index ec6fb09e2e1711f7adfbe079559a89f1a9cd343d..bd19a20a122eaad0555d70b75552420a23a3bf79 100644 (file)
@@ -401,8 +401,7 @@ static int ti_qspi_dma_xfer(struct ti_qspi *qspi, dma_addr_t dma_dst,
        struct dma_async_tx_descriptor *tx;
        int ret;
 
-       tx = dma_dev->device_prep_dma_memcpy(chan, dma_dst, dma_src,
-                                            len, flags);
+       tx = dmaengine_prep_dma_memcpy(chan, dma_dst, dma_src, len, flags);
        if (!tx) {
                dev_err(qspi->dev, "device_prep_dma_memcpy error\n");
                return -EIO;