drivers/net/usb: Use kmemdup
authorJulia Lawall <julia@diku.dk>
Sat, 15 May 2010 11:23:15 +0000 (11:23 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 18 May 2010 00:44:48 +0000 (17:44 -0700)
commit5476b8b22589fe118f3c228d71406455002b79b1
tree01a42f9d6949f9bf2b97a5ca667ad67842eee797
parent99bf236612801351834b441314379bc5304d62ce
drivers/net/usb: Use kmemdup

Use kmemdup when some other buffer is immediately copied into the
allocated region.

A simplified version of the semantic patch that makes this change is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression from,to,size,flag;
statement S;
@@

-  to = \(kmalloc\|kzalloc\)(size,flag);
+  to = kmemdup(from,size,flag);
   if (to==NULL || ...) S
-  memcpy(to, from, size);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/dm9601.c