From: Peter Chen Date: Fri, 15 Jul 2016 09:38:46 +0000 (+0800) Subject: mfd: qcom_rpm: Add missing of_node_put after calling of_parse_phandle X-Git-Tag: rel_imx_4.19.35_1.1.0~14008^2~50 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=349290fc9e761aaef6d6882721189f668ec5ff49;p=linux.git mfd: qcom_rpm: Add missing of_node_put after calling of_parse_phandle of_node_put needs to be called when the device node which is got from of_parse_phandle has finished using. Signed-off-by: Peter Chen Reviewed-by: Bjorn Andersson Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/qcom_rpm.c b/drivers/mfd/qcom_rpm.c index a74210df5969..d3300714c27b 100644 --- a/drivers/mfd/qcom_rpm.c +++ b/drivers/mfd/qcom_rpm.c @@ -589,6 +589,7 @@ static int qcom_rpm_probe(struct platform_device *pdev) } rpm->ipc_regmap = syscon_node_to_regmap(syscon_np); + of_node_put(syscon_np); if (IS_ERR(rpm->ipc_regmap)) return PTR_ERR(rpm->ipc_regmap);