diff options
author | Julia Lawall <julia@diku.dk> | 2009-12-19 07:30:30 (GMT) |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-12-22 22:29:05 (GMT) |
commit | 1e9d1b13efae7e0a2705611d47ae5f07e27015f0 (patch) | |
tree | bb5f9eed3636080b2dc8a4791d03b812e65a6786 /net | |
parent | 3542a113ab2f5880f1b62e5909d754250fb57d6b (diff) | |
download | linux-fsl-qoriq-1e9d1b13efae7e0a2705611d47ae5f07e27015f0.tar.xz |
drivers/dma: drop unnecesary memset
memset of 0 is not needed after kzalloc
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression x;
statement S;
@@
x = kzalloc(...);
if (x == NULL) S
... when != x
-memset(x,0,...);// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'net')
0 files changed, 0 insertions, 0 deletions