diff options
author | Junlin Yang <yangjunlin@yulong.com> | 2021-02-16 16:27:39 +0800 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-03-15 15:35:32 +0530 |
commit | 00f2e6f668b05c259f3f8d1e943318bcad8486e7 (patch) | |
tree | daa94a6c8cb2e13558020615c9f2cc66d8a8d3ff | |
parent | 6b5371adc3e56da66085aeef7e70bc8c33e6264c (diff) |
phy: ti: j721e-wiz: add missing of_node_put
Fix OF node leaks by calling of_node_put in
for_each_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/20210216082739.1414-1-angkery@163.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
-rw-r--r-- | drivers/phy/ti/phy-j721e-wiz.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/phy/ti/phy-j721e-wiz.c b/drivers/phy/ti/phy-j721e-wiz.c index c9cfafe89cbf..8a4be1ec2816 100644 --- a/drivers/phy/ti/phy-j721e-wiz.c +++ b/drivers/phy/ti/phy-j721e-wiz.c @@ -792,6 +792,7 @@ static int wiz_get_lane_phy_types(struct device *dev, struct wiz *wiz) dev_err(dev, "%s: Reading \"reg\" from \"%s\" failed: %d\n", __func__, subnode->name, ret); + of_node_put(subnode); return ret; } of_property_read_u32(subnode, "cdns,num-lanes", &num_lanes); |