1
0
Fork 0

drivers/net/phy/mdio-mux-gpio.c: drop devm_kfree of devm_kzalloc'd data

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>
hifive-unleashed-5.1
Julia Lawall 2012-08-04 06:50:49 +00:00 committed by David S. Miller
parent caa0bf648c
commit 7cefdd1f55
1 changed files with 0 additions and 1 deletions

View File

@ -101,7 +101,6 @@ err:
n--;
gpio_free(s->gpio[n]);
}
devm_kfree(&pdev->dev, s);
return r;
}