12345678910111213141516171819202122232425 |
- From 349290fc9e761aaef6d6882721189f668ec5ff49 Mon Sep 17 00:00:00 2001
- From: Peter Chen <[email protected]>
- Date: Fri, 15 Jul 2016 17:38:46 +0800
- Subject: 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 <[email protected]>
- Reviewed-by: Bjorn Andersson <[email protected]>
- Signed-off-by: Lee Jones <[email protected]>
- ---
- drivers/mfd/qcom_rpm.c | 1 +
- 1 file changed, 1 insertion(+)
- --- a/drivers/mfd/qcom_rpm.c
- +++ b/drivers/mfd/qcom_rpm.c
- @@ -538,6 +538,7 @@ static int qcom_rpm_probe(struct platfor
- }
-
- 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);
-
|