mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 07:02:23 +00:00
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>
This commit is contained in:
parent
caa0bf648c
commit
7cefdd1f55
@ -101,7 +101,6 @@ err:
|
||||
n--;
|
||||
gpio_free(s->gpio[n]);
|
||||
}
|
||||
devm_kfree(&pdev->dev, s);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user