All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: core: Get and put regulator of_node
@ 2014-04-02 14:06 Charles Keepax
  2014-04-02 14:23 ` Mark Brown
  0 siblings, 1 reply; 7+ messages in thread
From: Charles Keepax @ 2014-04-02 14:06 UTC (permalink / raw)
  To: broonie; +Cc: lgirdwood, linux-kernel, patches

We should be incrementing the reference count of the of_node for the
regulator when we take a copy of it. This patch does so.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 drivers/regulator/core.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index afca1bc..e26372a 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -3433,7 +3433,7 @@ regulator_register(const struct regulator_desc *regulator_desc,
 
 	/* register with sysfs */
 	rdev->dev.class = &regulator_class;
-	rdev->dev.of_node = config->of_node;
+	rdev->dev.of_node = of_node_get(config->of_node);
 	rdev->dev.parent = dev;
 	dev_set_name(&rdev->dev, "regulator.%d",
 		     atomic_inc_return(&regulator_no) - 1);
@@ -3575,6 +3575,7 @@ void regulator_unregister(struct regulator_dev *rdev)
 	list_del(&rdev->list);
 	kfree(rdev->constraints);
 	regulator_ena_gpio_free(rdev);
+	of_node_put(rdev->dev.of_node);
 	device_unregister(&rdev->dev);
 	mutex_unlock(&regulator_list_mutex);
 }
-- 
1.7.2.5


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

end of thread, other threads:[~2014-04-03 11:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-02 14:06 [PATCH] regulator: core: Get and put regulator of_node Charles Keepax
2014-04-02 14:23 ` Mark Brown
2014-04-02 16:04   ` Charles Keepax
2014-04-02 16:53     ` Mark Brown
2014-04-03 10:58       ` Charles Keepax
2014-04-03 11:14         ` Mark Brown
2014-04-03 11:48           ` Charles Keepax

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.