* [PATCH] regulator: dt: fix the name of regulator supply
@ 2012-05-18 19:31 Laxman Dewangan
0 siblings, 0 replies; only message in thread
From: Laxman Dewangan @ 2012-05-18 19:31 UTC (permalink / raw)
To: broonie, grant.likely, rob.herring, lrg
Cc: devicetree-discuss, linux-doc, Laxman Dewangan
If there is any input supply for reglator then the name
of supply need to provided by init_data->supply_regulator.
In dt case, the input supply is searched by the <name>-supply
and here it is require to fix the name so that correct device
node can be identified at the time of regulator registration.
Fixing the name for input supply as "regulator-supply".
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
---
.../devicetree/bindings/regulator/regulator.txt | 4 ++--
drivers/regulator/of_regulator.c | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/regulator/regulator.txt b/Documentation/devicetree/bindings/regulator/regulator.txt
index 5b7a408..6c8de69 100644
--- a/Documentation/devicetree/bindings/regulator/regulator.txt
+++ b/Documentation/devicetree/bindings/regulator/regulator.txt
@@ -9,7 +9,7 @@ Optional properties:
- regulator-max-microamp: largest current consumers may set
- regulator-always-on: boolean, regulator should never be disabled
- regulator-boot-on: bootloader/firmware enabled regulator
-- <name>-supply: phandle to the parent supply/regulator node
+- regulator-supply: phandle to the parent supply/regulator node
Example:
@@ -17,7 +17,7 @@ Example:
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <2500000>;
regulator-always-on;
- vin-supply = <&vin>;
+ regulator-supply = <&vin>;
};
Regulator Consumers:
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 56593b7..48d6449 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -60,6 +60,9 @@ static void of_get_regulation_constraints(struct device_node *np,
constraints->always_on = true;
else /* status change should be possible if not always on. */
constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
+
+ if (of_find_property(np, "regulator-supply", NULL))
+ (*init_data)->supply_regulator = "regulator";
}
/**
--
1.7.1.1
-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information. Any unauthorized review, use, disclosure or distribution
is prohibited. If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
-----------------------------------------------------------------------------------
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-05-18 19:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-18 19:31 [PATCH] regulator: dt: fix the name of regulator supply Laxman Dewangan
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).