diff mbox series

drivers: bus: intel: Fix resource leaks in for_each_available_child_of_node loop

Message ID 20230706072839.42905-1-luhongfei@vivo.com (mailing list archive)
State New, archived
Headers show
Series drivers: bus: intel: Fix resource leaks in for_each_available_child_of_node loop | expand

Commit Message

Lu Hongfei July 6, 2023, 7:28 a.m. UTC
Ensure child node references are decremented properly
after loop complete.

Signed-off-by: Lu Hongfei <luhongfei@vivo.com>
---
 drivers/bus/intel-ixp4xx-eb.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/drivers/bus/intel-ixp4xx-eb.c b/drivers/bus/intel-ixp4xx-eb.c
index f5ba6bee6fd8..cac8a8f5d7f9 100644
--- a/drivers/bus/intel-ixp4xx-eb.c
+++ b/drivers/bus/intel-ixp4xx-eb.c
@@ -398,6 +398,7 @@  static int ixp4xx_exp_probe(struct platform_device *pdev)
 		/* We have at least one child */
 		have_children = true;
 	}
+	of_node_put(child);
 
 	if (have_children)
 		return of_platform_default_populate(np, NULL, dev);