public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: of_get_regulation_constraints: Use node name as fallback
@ 2013-09-22 10:47 Lars-Peter Clausen
  2013-09-23 10:15 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Lars-Peter Clausen @ 2013-09-22 10:47 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood; +Cc: linux-kernel, Lars-Peter Clausen

If the "regulator-name" property is not present use the name of the devicetree
node as a fallback.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 drivers/regulator/of_regulator.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 7827384..53a83e8 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -25,6 +25,8 @@ static void of_get_regulation_constraints(struct device_node *np,
 	struct regulation_constraints *constraints = &(*init_data)->constraints;
 
 	constraints->name = of_get_property(np, "regulator-name", NULL);
+	if (!constraints->name)
+		constraints->name = np->name;
 
 	min_uV = of_get_property(np, "regulator-min-microvolt", NULL);
 	if (min_uV)
-- 
1.7.10.4


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

end of thread, other threads:[~2013-09-23 23:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-22 10:47 [PATCH] regulator: of_get_regulation_constraints: Use node name as fallback Lars-Peter Clausen
2013-09-23 10:15 ` Mark Brown
2013-09-23 20:28   ` Lars-Peter Clausen
2013-09-23 23:33     ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox