diff options
author | Julia Lawall <julia@diku.dk> | 2010-05-15 13:20:45 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-18 02:44:47 +0200 |
commit | 99bf236612801351834b441314379bc5304d62ce (patch) | |
tree | 56922d148dedd5d6fc19e6da0629d6f2dfcec007 /sound | |
parent | drivers/net/usb: Use kmemdup (diff) | |
download | linux-99bf236612801351834b441314379bc5304d62ce.tar.xz linux-99bf236612801351834b441314379bc5304d62ce.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 'sound')
0 files changed, 0 insertions, 0 deletions