dmaengine: vdma: Use dma_pool_zalloc
authorJulia Lawall <Julia.Lawall@lip6.fr>
Fri, 29 Apr 2016 20:09:09 +0000 (22:09 +0200)
committerVinod Koul <vinod.koul@intel.com>
Tue, 3 May 2016 06:54:11 +0000 (12:24 +0530)
Dma_pool_zalloc combines dma_pool_alloc and memset 0.  The semantic patch
that makes this transformation is as follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression d,e;
statement S;
@@

        d =
-            dma_pool_alloc
+            dma_pool_zalloc
             (...);
        if (!d) S
-       memset(d, 0, sizeof(*d));
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/xilinx/xilinx_vdma.c

index 3c5ce373b99dfd4a4add4359123977da8c3749aa..781ab4dbb2b8ff5b0dd19f5405d60d2f58db302c 100644 (file)
@@ -343,11 +343,10 @@ xilinx_vdma_alloc_tx_segment(struct xilinx_vdma_chan *chan)
        struct xilinx_vdma_tx_segment *segment;
        dma_addr_t phys;
 
-       segment = dma_pool_alloc(chan->desc_pool, GFP_ATOMIC, &phys);
+       segment = dma_pool_zalloc(chan->desc_pool, GFP_ATOMIC, &phys);
        if (!segment)
                return NULL;
 
-       memset(segment, 0, sizeof(*segment));
        segment->phys = phys;
 
        return segment;