diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-04-29 22:09:11 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-05-03 16:10:13 +0800 |
commit | 472d640bd0fe5b28332b277316cff1dadf40d083 (patch) | |
tree | 88e7d970a246f368db0e35d64148f34eaa2b9817 /Documentation | |
parent | d0c15bd5067ec75d8738f4d4ba1e5e3ab0ea6f2d (diff) |
crypto: marvell/cesa - 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: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation')
0 files changed, 0 insertions, 0 deletions