mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
net: bcmgenet: Fix a resource leak in an error handling path in the probe functin
[ Upstream commit4375ada019] If the 'register_netdev()' call fails, we must undo a previous 'bcmgenet_mii_init()' call. Fixes:1c1008c793("net: bcmgenet: add main driver file") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Link: https://lore.kernel.org/r/20201212182005.120437-1-christophe.jaillet@wanadoo.fr Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c755c32c75
commit
5fa570e8e1
@@ -3593,8 +3593,10 @@ static int bcmgenet_probe(struct platform_device *pdev)
|
||||
clk_disable_unprepare(priv->clk);
|
||||
|
||||
err = register_netdev(dev);
|
||||
if (err)
|
||||
if (err) {
|
||||
bcmgenet_mii_exit(dev);
|
||||
goto err;
|
||||
}
|
||||
|
||||
return err;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user