]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
dmaengine: mv_xor: match alloc_wc and free_wc
authorRosen Penev <rosenp@gmail.com>
Thu, 21 Aug 2025 22:09:42 +0000 (15:09 -0700)
committerVinod Koul <vkoul@kernel.org>
Tue, 2 Sep 2025 07:11:17 +0000 (12:41 +0530)
dma_alloc_wc is used but not dma_free_wc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://lore.kernel.org/r/20250821220942.10578-1-rosenp@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/mv_xor.c

index 1fdcb0f5c9e7256980af2a406aa23ac710bd174d..5e83862960461c45c006baaded3d3d3c2e047048 100644 (file)
@@ -1013,7 +1013,7 @@ static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan)
 
        dma_async_device_unregister(&mv_chan->dmadev);
 
-       dma_free_coherent(dev, MV_XOR_POOL_SIZE,
+       dma_free_wc(dev, MV_XOR_POOL_SIZE,
                          mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
        dma_unmap_single(dev, mv_chan->dummy_src_addr,
                         MV_XOR_MIN_BYTE_COUNT, DMA_FROM_DEVICE);
@@ -1163,7 +1163,7 @@ mv_xor_channel_add(struct mv_xor_device *xordev,
 err_free_irq:
        free_irq(mv_chan->irq, mv_chan);
 err_free_dma:
-       dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
+       dma_free_wc(&pdev->dev, MV_XOR_POOL_SIZE,
                          mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
 err_unmap_dst:
        dma_unmap_single(dma_dev->dev, mv_chan->dummy_dst_addr,