drivers/char/hw_random/octeon-rng.c: drop frees of devm allocated data
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 4 Aug 2012 16:50:46 +0000 (18:50 +0200)
committerHerbert 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