commit | 1ac93a30398774e084c12e25b3a74285ee4dba90 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Thu May 13 22:00:40 2010 +0200 |
committer | Greg Kroah-Hartman <gregkh@suse.de> | Thu May 20 13:21:46 2010 -0700 |
tree | 4b1866b68550d336a1e5edbf3990108088cc11d2 | |
parent | b2c573790381720e8b0aca1f392b4063f84cfcb6 [diff] |
USB: io_edgeport: Use kzalloc Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == NULL) S -memset(x, 0, size); // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>