diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-04-29 16:09:09 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-05-03 02:54:11 -0400 |
commit | 2ba4f8abfe450ddf55bf6c79b4650525b37f6962 (patch) | |
tree | 5516ca48d5e77de7230c7cfe56995047ab31cbc0 /drivers/dma/xilinx | |
parent | 48a59edc63ed83283bf2d2523137ab0578feac1a (diff) |
dmaengine: vdma: Use dma_pool_zalloc
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>
Diffstat (limited to 'drivers/dma/xilinx')
-rw-r--r-- | drivers/dma/xilinx/xilinx_vdma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/xilinx/xilinx_vdma.c b/drivers/dma/xilinx/xilinx_vdma.c index 3c5ce373b99d..781ab4dbb2b8 100644 --- a/drivers/dma/xilinx/xilinx_vdma.c +++ b/drivers/dma/xilinx/xilinx_vdma.c | |||
@@ -343,11 +343,10 @@ xilinx_vdma_alloc_tx_segment(struct xilinx_vdma_chan *chan) | |||
343 | struct xilinx_vdma_tx_segment *segment; | 343 | struct xilinx_vdma_tx_segment *segment; |
344 | dma_addr_t phys; | 344 | dma_addr_t phys; |
345 | 345 | ||
346 | segment = dma_pool_alloc(chan->desc_pool, GFP_ATOMIC, &phys); | 346 | segment = dma_pool_zalloc(chan->desc_pool, GFP_ATOMIC, &phys); |
347 | if (!segment) | 347 | if (!segment) |
348 | return NULL; | 348 | return NULL; |
349 | 349 | ||
350 | memset(segment, 0, sizeof(*segment)); | ||
351 | segment->phys = phys; | 350 | segment->phys = phys; |
352 | 351 | ||
353 | return segment; | 352 | return segment; |