aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorSabyasachi Gupta <sabyasachi.linux@gmail.com>2018-11-05 08:58:23 +0530
committerMichael Ellerman <mpe@ellerman.id.au>2018-11-25 17:11:22 +1100
commitc3d6a64bd1e82ea486bff46b17d5403c2d2602d6 (patch)
tree4511100d81070464e2d8daff4ba343e79646877e /arch/powerpc
parentpowerpc/85xx: Drop pointless static qualifier (diff)
downloadlinux-dev-c3d6a64bd1e82ea486bff46b17d5403c2d2602d6.tar.xz
linux-dev-c3d6a64bd1e82ea486bff46b17d5403c2d2602d6.zip
powerpc/pasemi: Use dma_zalloc_coherent()
Replace dma_alloc_coherent() + memset() with dma_zalloc_coherent(). Signed-off-by: Sabyasachi Gupta <sabyasachi.linux@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/platforms/pasemi/dma_lib.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pasemi/dma_lib.c b/arch/powerpc/platforms/pasemi/dma_lib.c
index 53384eb42a76..d18d16489a15 100644
--- a/arch/powerpc/platforms/pasemi/dma_lib.c
+++ b/arch/powerpc/platforms/pasemi/dma_lib.c
@@ -255,15 +255,13 @@ int pasemi_dma_alloc_ring(struct pasemi_dmachan *chan, int ring_size)
chan->ring_size = ring_size;
- chan->ring_virt = dma_alloc_coherent(&dma_pdev->dev,
+ chan->ring_virt = dma_zalloc_coherent(&dma_pdev->dev,
ring_size * sizeof(u64),
&chan->ring_dma, GFP_KERNEL);
if (!chan->ring_virt)
return -ENOMEM;
- memset(chan->ring_virt, 0, ring_size * sizeof(u64));
-
return 0;
}
EXPORT_SYMBOL(pasemi_dma_alloc_ring);