USB: io_edgeport: Use kzalloc
authorJulia Lawall <julia@diku.dk>
Thu, 13 May 2010 20:00:40 +0000 (22:00 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 20 May 2010 20:21:46 +0000 (13:21 -0700)
commit1ac93a30398774e084c12e25b3a74285ee4dba90
tree4b1866b68550d336a1e5edbf3990108088cc11d2
parentb2c573790381720e8b0aca1f392b4063f84cfcb6
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>
drivers/usb/serial/io_edgeport.c