diff options
author | 2016-04-29 22:09:09 +0200 | |
---|---|---|
committer | 2016-05-03 12:24:11 +0530 | |
commit | 2ba4f8abfe450ddf55bf6c79b4650525b37f6962 (patch) | |
tree | 5516ca48d5e77de7230c7cfe56995047ab31cbc0 /tools/perf/scripts/python/export-to-postgresql.py | |
parent | dmaengine: vdma: Fix checkpatch.pl warnings (diff) | |
download | wireguard-linux-2ba4f8abfe450ddf55bf6c79b4650525b37f6962.tar.xz wireguard-linux-2ba4f8abfe450ddf55bf6c79b4650525b37f6962.zip |
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 '')
0 files changed, 0 insertions, 0 deletions