1
0
Fork 0
alistair23-linux/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
..
Makefile crypto: marvell/cesa - add TDMA support 2015-06-19 22:18:03 +08:00
cesa.c crypto: marvell/cesa - Improving code readability 2016-04-20 17:50:07 +08:00
cesa.h crypto: marvell/cesa - fix memory leak 2016-03-17 19:09:04 +08:00
cipher.c crypto: marvell - check return value of sg_nents_for_len 2015-11-17 22:00:35 +08:00
hash.c crypto: marvell/cesa - remove unneeded condition 2016-04-05 20:35:45 +08:00
tdma.c crypto: marvell/cesa - Use dma_pool_zalloc 2016-05-03 16:10:13 +08:00