diff options
author | Julia Lawall <[email protected]> | 2016-04-29 22:09:11 +0200 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2016-05-03 16:10:13 +0800 |
commit | 472d640bd0fe5b28332b277316cff1dadf40d083 (patch) | |
tree | 88e7d970a246f368db0e35d64148f34eaa2b9817 /tools/perf/util/trace-event-scripting.c | |
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 <[email protected]>
Acked-by: Boris Brezillon <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
Diffstat (limited to 'tools/perf/util/trace-event-scripting.c')
0 files changed, 0 insertions, 0 deletions