linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] memory: emif: add missing of_node_put after calling of_parse_phandle
@ 2016-07-15  9:35 Peter Chen
  2016-07-15 18:50 ` kbuild test robot
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Chen @ 2016-07-15  9:35 UTC (permalink / raw)
  To: ssantosh; +Cc: linux-kernel, Peter Chen

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 <peter.chen@nxp.com>
---
 drivers/memory/emif.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/memory/emif.c b/drivers/memory/emif.c
index 04644e7..c5ec77d 100644
--- a/drivers/memory/emif.c
+++ b/drivers/memory/emif.c
@@ -1409,8 +1409,10 @@ static struct emif_data * __init_or_module of_get_memory_device_details(
 	goto out;
 
 error:
+	of_put_node(np_ddr);
 	return NULL;
 out:
+	of_put_node(np_ddr);
 	return emif;
 }
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-15 18:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-15  9:35 [PATCH 1/1] memory: emif: add missing of_node_put after calling of_parse_phandle Peter Chen
2016-07-15 18:50 ` kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).