kernel_optimize_test/drivers/crypto/marvell
Julia Lawall 472d640bd0 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>
2016-05-03 16:10:13 +08:00
..
cesa.c crypto: marvell/cesa - Improving code readability 2016-04-20 17:50:07 +08:00
cesa.h
cipher.c
hash.c
Makefile
tdma.c crypto: marvell/cesa - Use dma_pool_zalloc 2016-05-03 16:10:13 +08:00