From: Peter Chen Date: Tue, 5 Jul 2016 02:11:03 +0000 (+0800) Subject: hwspinlock: qcom_hwspinlock: add missing of_node_put after calling of_parse_phandle X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4d41c8cb970cb719a7008a68ad66cf1c1ecc82ad;p=linux-beck.git hwspinlock: qcom_hwspinlock: 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. Cc: linux-arm-kernel@lists.infradead.org Cc: linux-arm-msm@vger.kernel.org Signed-off-by: Peter Chen Signed-off-by: Bjorn Andersson --- diff --git a/drivers/hwspinlock/qcom_hwspinlock.c b/drivers/hwspinlock/qcom_hwspinlock.c index c752447fbac7..fa6880b8060a 100644 --- a/drivers/hwspinlock/qcom_hwspinlock.c +++ b/drivers/hwspinlock/qcom_hwspinlock.c @@ -98,6 +98,7 @@ static int qcom_hwspinlock_probe(struct platform_device *pdev) } regmap = syscon_node_to_regmap(syscon); + of_node_put(syscon); if (IS_ERR(regmap)) return PTR_ERR(regmap);