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

Commit b5776f01 authored by Sean Wang's avatar Sean Wang Committed by David S. Miller
Browse files

net: ethernet: mediatek: fix the missing of_node_put() after node is used done inside mtk_mdio_init



This patch adds the missing of_node_put() after finishing the usage
of of_get_child_by_name.

Signed-off-by: default avatarSean Wang <sean.wang@mediatek.com>
Acked-by: default avatarJohn Crispin <john@phrozen.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 79e9a414
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -324,6 +324,7 @@ static int mtk_mdio_init(struct mtk_eth *eth)
	err = of_mdiobus_register(eth->mii_bus, mii_np);
	if (err)
		goto err_free_bus;
	of_node_put(mii_np);

	return 0;