[PATCH] bus/arm-cci: Fix refcount leak in cci_probe

Ma Ke posted 1 patch 2 years, 2 months ago
drivers/bus/arm-cci.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] bus/arm-cci: Fix refcount leak in cci_probe
Posted by Ma Ke 2 years, 2 months ago
Add the missing of_node_put() to release the refcount incremented
by of_find_matching_node().

Signed-off-by: Ma Ke <make_ruc2021@163.com>
---
 drivers/bus/arm-cci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c
index b8184a903583..6be7b05b5ff1 100644
--- a/drivers/bus/arm-cci.c
+++ b/drivers/bus/arm-cci.c
@@ -548,6 +548,7 @@ static int cci_probe(void)
 	}
 	if (ret || !cci_ctrl_base) {
 		WARN(1, "unable to ioremap CCI ctrl\n");
+		of_node_put(np);
 		return -ENXIO;
 	}
 
-- 
2.37.2