summaryrefslogtreecommitdiffstats
path: root/drivers/dma/dma-axi-dmac.c
diff options
context:
space:
mode:
authorJisheng Zhang <jszhang@kernel.org>2023-05-21 18:02:49 +0800
committerVinod Koul <vkoul@kernel.org>2023-05-24 12:24:32 +0530
commitd27afd7ae6a316fac4d1f613db2de02ce1e872a4 (patch)
tree4f14bf4fb229130ced3b5191951e862cfc8c3393 /drivers/dma/dma-axi-dmac.c
parent3a4905c59832896f811f8b3e840be936ae598dd1 (diff)
downloadlinux-stable-d27afd7ae6a316fac4d1f613db2de02ce1e872a4.tar.gz
linux-stable-d27afd7ae6a316fac4d1f613db2de02ce1e872a4.tar.bz2
linux-stable-d27afd7ae6a316fac4d1f613db2de02ce1e872a4.zip
dmaengine: axi-dmac: Don't set chancnt
The dma framework will calculate the dma channels chancnt, setting it ourself is wrong. Signed-off-by: Jisheng Zhang <jszhang@kernel.org> Acked-by: Lars-Peter Clausen <lars@metafoo.de> Link: https://lore.kernel.org/r/20230521100252.3197-3-jszhang@kernel.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/dma-axi-dmac.c')
-rw-r--r--drivers/dma/dma-axi-dmac.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/dma-axi-dmac.c b/drivers/dma/dma-axi-dmac.c
index a812b9b00e6b..fc7cdad37161 100644
--- a/drivers/dma/dma-axi-dmac.c
+++ b/drivers/dma/dma-axi-dmac.c
@@ -963,7 +963,6 @@ static int axi_dmac_probe(struct platform_device *pdev)
dma_dev->device_terminate_all = axi_dmac_terminate_all;
dma_dev->device_synchronize = axi_dmac_synchronize;
dma_dev->dev = &pdev->dev;
- dma_dev->chancnt = 1;
dma_dev->src_addr_widths = BIT(dmac->chan.src_width);
dma_dev->dst_addr_widths = BIT(dmac->chan.dest_width);
dma_dev->directions = BIT(dmac->chan.direction);