diff options
author | Laxman Dewangan <ldewangan@nvidia.com> | 2012-07-05 18:12:01 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-05 13:49:35 +0100 |
commit | 6be5bfc3bf0d31a70745a52e69f7f46de974193f (patch) | |
tree | a6a157abba4cf674381104ebeb5521b7e0a9aab9 /Documentation/devicetree/bindings/regulator | |
parent | 4706fcab9b064e6077404ccb6c5ca9c188758068 (diff) | |
download | blackbird-op-linux-6be5bfc3bf0d31a70745a52e69f7f46de974193f.tar.gz blackbird-op-linux-6be5bfc3bf0d31a70745a52e69f7f46de974193f.zip |
regulator: fixed: dt: support for input supply
Add support for input supply in DT parsing of node.
The input supply will be provided by the property
"vin-supply" in the regulator node.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'Documentation/devicetree/bindings/regulator')
-rw-r--r-- | Documentation/devicetree/bindings/regulator/fixed-regulator.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/regulator/fixed-regulator.txt b/Documentation/devicetree/bindings/regulator/fixed-regulator.txt index 2f5b6b1ba15f..4fae41d54798 100644 --- a/Documentation/devicetree/bindings/regulator/fixed-regulator.txt +++ b/Documentation/devicetree/bindings/regulator/fixed-regulator.txt @@ -10,6 +10,7 @@ Optional properties: If this property is missing, the default assumed is Active low. - gpio-open-drain: GPIO is open drain type. If this property is missing then default assumption is false. +-vin-supply: Input supply name. Any property defined as part of the core regulator binding, defined in regulator.txt, can also be used. @@ -29,4 +30,5 @@ Example: enable-active-high; regulator-boot-on; gpio-open-drain; + vin-supply = <&parent_reg>; }; |