git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33b58b0
)
drivers/char/hw_random/octeon-rng.c: drop frees of devm allocated data
author
Julia Lawall
<Julia.Lawall@lip6.fr>
Sat, 4 Aug 2012 16:50:46 +0000
(18:50 +0200)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 20 Aug 2012 08:28:13 +0000
(16:28 +0800)
devm_kfree and devm_iounmap should not have to be explicitly used.
The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression x,d;
@@
x = devm_kzalloc(...)
...
?-devm_kfree(d,x);
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
No differences found