diff options
author | Junlin Yang | 2021-02-16 16:48:47 +0800 |
---|---|---|
committer | Vinod Koul | 2021-03-15 15:35:32 +0530 |
commit | 6b5371adc3e56da66085aeef7e70bc8c33e6264c (patch) | |
tree | 57a474b8e8fb2f8ef4486d7dac290e7a6e0c1d09 /drivers/phy/rockchip | |
parent | 7bc057dd65ab02995f21fa3b0f9d97261cd5aa2a (diff) |
phy: rockchip-typec: add missing of_node_put
Fix OF node leaks by calling of_node_put in
for_each_available_child_of_node when the cycle returns.
Generated by: scripts/coccinelle/iterators/for_each_child.cocci
Signed-off-by: Junlin Yang <yangjunlin@yulong.com>
Link: https://lore.kernel.org/r/20210216084847.1544-1-angkery@163.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy/rockchip')
-rw-r--r-- | drivers/phy/rockchip/phy-rockchip-typec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/phy/rockchip/phy-rockchip-typec.c b/drivers/phy/rockchip/phy-rockchip-typec.c index 70a31251b202..d2bbdc96a167 100644 --- a/drivers/phy/rockchip/phy-rockchip-typec.c +++ b/drivers/phy/rockchip/phy-rockchip-typec.c @@ -1180,6 +1180,7 @@ static int rockchip_typec_phy_probe(struct platform_device *pdev) dev_err(dev, "failed to create phy: %pOFn\n", child_np); pm_runtime_disable(dev); + of_node_put(child_np); return PTR_ERR(phy); } |