Commit 8d00201a authored by Peter Chen's avatar Peter Chen Committed by David S. Miller

ethernet: aurora: nb8800: add missing of_node_put after calling of_parse_phandle

of_node_put needs to be called when the device node which is got
from of_parse_phandle has finished using.
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a94efbd7
...@@ -1504,6 +1504,7 @@ static int nb8800_probe(struct platform_device *pdev) ...@@ -1504,6 +1504,7 @@ static int nb8800_probe(struct platform_device *pdev)
err_free_dma: err_free_dma:
nb8800_dma_free(dev); nb8800_dma_free(dev);
err_free_bus: err_free_bus:
of_node_put(priv->phy_node);
mdiobus_unregister(bus); mdiobus_unregister(bus);
err_disable_clk: err_disable_clk:
clk_disable_unprepare(priv->clk); clk_disable_unprepare(priv->clk);
...@@ -1519,6 +1520,7 @@ static int nb8800_remove(struct platform_device *pdev) ...@@ -1519,6 +1520,7 @@ static int nb8800_remove(struct platform_device *pdev)
struct nb8800_priv *priv = netdev_priv(ndev); struct nb8800_priv *priv = netdev_priv(ndev);
unregister_netdev(ndev); unregister_netdev(ndev);
of_node_put(priv->phy_node);
mdiobus_unregister(priv->mii_bus); mdiobus_unregister(priv->mii_bus);
......
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