crypto: marvell/cesa - Use dma_pool_zalloc
authorJulia Lawall <Julia.Lawall@lip6.fr>
Fri, 29 Apr 2016 20:09:11 +0000 (22:09 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 3 May 2016 08:10:13 +0000 (16:10 +0800)
commit472d640bd0fe5b28332b277316cff1dadf40d083
tree88e7d970a246f368db0e35d64148f34eaa2b9817
parentd0c15bd5067ec75d8738f4d4ba1e5e3ab0ea6f2d
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>
drivers/crypto/marvell/tdma.c