Browse Source

soc: rockchip: power-domain: fix err handle while probing

If we fail to probe the driver, we should not directly break
from the for_each_available_child_of_node since it calls of_node_get
while iterating. This patch add of_node_put to fix the unbalanced
call pair.

Fixes: 7c696693a4f5 ("soc: rockchip: power-domain: Add power domain driver")
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Shawn Lin 9 years ago
parent
commit
1d961f11a1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/soc/rockchip/pm_domains.c

+ 1 - 0
drivers/soc/rockchip/pm_domains.c

@@ -423,6 +423,7 @@ static int rockchip_pm_domain_probe(struct platform_device *pdev)
 		if (error) {
 			dev_err(dev, "failed to handle node %s: %d\n",
 				node->name, error);
+			of_node_put(node);
 			goto err_out;
 		}
 	}