diff options
author | Julia Lawall <julia@diku.dk> | 2010-05-15 11:18:58 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-17 17:44:47 -0700 |
commit | 175c04414106c34f0130d8d3bf152825b4829ceb (patch) | |
tree | e75156f45768c01199fb270445dcbdf37d005b16 /drivers/net/usb/asix.c | |
parent | 08d18f3b62b4c05731a09eca2b432842a0a18da5 (diff) | |
download | linux-3.10-175c04414106c34f0130d8d3bf152825b4829ceb.tar.gz linux-3.10-175c04414106c34f0130d8d3bf152825b4829ceb.tar.bz2 linux-3.10-175c04414106c34f0130d8d3bf152825b4829ceb.zip |
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>
Diffstat (limited to 'drivers/net/usb/asix.c')
0 files changed, 0 insertions, 0 deletions