Commit ef40eb39 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Mark Brown

spi: atmel: Use dmaengine_prep_slave_sg() API

Use the inline wrapper introduced by commit
16052827 ("dmaengine/dma_slave: introduce
inline wrappers").
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 7171511e
...@@ -597,21 +597,15 @@ static int atmel_spi_next_xfer_dma_submit(struct spi_master *master, ...@@ -597,21 +597,15 @@ static int atmel_spi_next_xfer_dma_submit(struct spi_master *master,
goto err_exit; goto err_exit;
/* Send both scatterlists */ /* Send both scatterlists */
rxdesc = rxchan->device->device_prep_slave_sg(rxchan, rxdesc = dmaengine_prep_slave_sg(rxchan, &as->dma.sgrx, 1,
&as->dma.sgrx, DMA_FROM_DEVICE,
1, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
DMA_FROM_DEVICE,
DMA_PREP_INTERRUPT | DMA_CTRL_ACK,
NULL);
if (!rxdesc) if (!rxdesc)
goto err_dma; goto err_dma;
txdesc = txchan->device->device_prep_slave_sg(txchan, txdesc = dmaengine_prep_slave_sg(txchan, &as->dma.sgtx, 1,
&as->dma.sgtx, DMA_TO_DEVICE,
1, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
DMA_TO_DEVICE,
DMA_PREP_INTERRUPT | DMA_CTRL_ACK,
NULL);
if (!txdesc) if (!txdesc)
goto err_dma; goto err_dma;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment