diff mbox series

[V2,RESEND] dmaengine: axi-dmac: Enable DMA_INTERLEAVE capability

Message ID 20190326140756.1941-1-alexandru.ardelean@analog.com (mailing list archive)
State Accepted
Headers show
Series [V2,RESEND] dmaengine: axi-dmac: Enable DMA_INTERLEAVE capability | expand

Commit Message

Alexandru Ardelean March 26, 2019, 2:07 p.m. UTC
From: Dragos Bogdan <dragos.bogdan@analog.com>

Since device_prep_interleaved_dma() is already implemented, the
DMA_INTERLEAVE capability should be set.

Signed-off-by: Dragos Bogdan <dragos.bogdan@analog.com>
Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
---

V2 seems to have been omitted earlier.
Probably due to some patchwork thing.

 drivers/dma/dma-axi-dmac.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Vinod Koul April 24, 2019, 5:39 a.m. UTC | #1
On 26-03-19, 16:07, Alexandru Ardelean wrote:
> From: Dragos Bogdan <dragos.bogdan@analog.com>
> 
> Since device_prep_interleaved_dma() is already implemented, the
> DMA_INTERLEAVE capability should be set.

Applied, thanks
diff mbox series

Patch

diff --git a/drivers/dma/dma-axi-dmac.c b/drivers/dma/dma-axi-dmac.c
index 0fe3a931d8d5..7fbb10003da8 100644
--- a/drivers/dma/dma-axi-dmac.c
+++ b/drivers/dma/dma-axi-dmac.c
@@ -693,6 +693,7 @@  static int axi_dmac_probe(struct platform_device *pdev)
 	dma_dev = &dmac->dma_dev;
 	dma_cap_set(DMA_SLAVE, dma_dev->cap_mask);
 	dma_cap_set(DMA_CYCLIC, dma_dev->cap_mask);
+	dma_cap_set(DMA_INTERLEAVE, dma_dev->cap_mask);
 	dma_dev->device_free_chan_resources = axi_dmac_free_chan_resources;
 	dma_dev->device_tx_status = dma_cookie_status;
 	dma_dev->device_issue_pending = axi_dmac_issue_pending;