提交 0607a2cd 编写于 作者: P Pan Bian 提交者: Jakub Kicinski

net: fec: put child node on error path

Also decrement the reference count of child device on error path.

Fixes: 3e782985 ("net: ethernet: fec: Allow configuration of MDIO bus speed")
Signed-off-by: NPan Bian <bianpan2016@163.com>
Link: https://lore.kernel.org/r/20210120122037.83897-1-bianpan2016@163.comSigned-off-by: NJakub Kicinski <kuba@kernel.org>
上级 3765d86f
......@@ -2165,9 +2165,9 @@ static int fec_enet_mii_init(struct platform_device *pdev)
fep->mii_bus->parent = &pdev->dev;
err = of_mdiobus_register(fep->mii_bus, node);
of_node_put(node);
if (err)
goto err_out_free_mdiobus;
of_node_put(node);
mii_cnt++;
......@@ -2180,6 +2180,7 @@ static int fec_enet_mii_init(struct platform_device *pdev)
err_out_free_mdiobus:
mdiobus_free(fep->mii_bus);
err_out:
of_node_put(node);
return err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册