Commit a86e2cbe authored by Scott Wood's avatar Scott Wood Committed by Jeff Garzik

fs_enet: Fix a memory leak in fs_enet_mdio_probe

There are more memory leaks in the !PPC_CPM_NEW_BINDING case, but that code
will disappear soon along with arch/ppc.

Reported by Daniel Marjamki <danielm77@spray.se> at
http://bugzilla.kernel.org/show_bug.cgi?id=10591Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 46fa0617
...@@ -194,7 +194,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev, ...@@ -194,7 +194,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev,
ret = of_address_to_resource(ofdev->node, 0, &res); ret = of_address_to_resource(ofdev->node, 0, &res);
if (ret) if (ret)
return ret; goto out_res;
snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", res.start); snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", res.start);
...@@ -236,6 +236,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev, ...@@ -236,6 +236,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev,
kfree(new_bus->irq); kfree(new_bus->irq);
out_unmap_regs: out_unmap_regs:
iounmap(fec->fecp); iounmap(fec->fecp);
out_res:
out_fec: out_fec:
kfree(fec); kfree(fec);
out_mii: out_mii:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment