Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f267de4 authored by Denis Kirjanov's avatar Denis Kirjanov Committed by David S. Miller
Browse files

bfin_mac: fix memleak in mii_bus{probe|remove}



Fix memory leak with miibus->irq

Signed-off-by: default avatarDenis Kirjanov <dkirjanov@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ee02a4ef
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1626,6 +1626,7 @@ static int __devinit bfin_mii_bus_probe(struct platform_device *pdev)
	return 0;

out_err_mdiobus_register:
	kfree(miibus->irq);
	mdiobus_free(miibus);
out_err_alloc:
	peripheral_free_list(pin_req);
@@ -1638,6 +1639,7 @@ static int __devexit bfin_mii_bus_remove(struct platform_device *pdev)
	struct mii_bus *miibus = platform_get_drvdata(pdev);
	platform_set_drvdata(pdev, NULL);
	mdiobus_unregister(miibus);
	kfree(miibus->irq);
	mdiobus_free(miibus);
	peripheral_free_list(pin_req);
	return 0;