drivers/net/phy/mdio-mux-gpio.c: drop devm_kfree of devm_kzalloc'd data
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 4 Aug 2012 06:50:49 +0000 (06:50 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 6 Aug 2012 20:24:27 +0000 (13:24 -0700)
devm_kfree 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: David S. Miller <davem@davemloft.net>

No differences found