aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2015-08-24 04:47:18 -0400
committerLee Jones <lee.jones@linaro.org>2015-08-24 10:15:39 -0400
commit89bd794cf60760ef053d3694c6749f651c034e02 (patch)
tree8a99501c9b3d1188f77094fc58b4fd8d773c940b
parentb9124a523017a53cce071451f5c38a0b77761534 (diff)
mfd: max77686: Don't suggest in binding to use a deprecated property
The regulator-compatible property from the regulator DT binding was deprecated. But the max77686 DT binding doc still suggest to use it instead of the regulator node name's which is the correct approach. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--Documentation/devicetree/bindings/mfd/max77686.txt11
1 files changed, 4 insertions, 7 deletions
diff --git a/Documentation/devicetree/bindings/mfd/max77686.txt b/Documentation/devicetree/bindings/mfd/max77686.txt
index 163bd81a4607..8221102d3fc2 100644
--- a/Documentation/devicetree/bindings/mfd/max77686.txt
+++ b/Documentation/devicetree/bindings/mfd/max77686.txt
@@ -26,7 +26,7 @@ Optional node:
26 }; 26 };
27 refer Documentation/devicetree/bindings/regulator/regulator.txt 27 refer Documentation/devicetree/bindings/regulator/regulator.txt
28 28
29 The regulator-compatible property of regulator should initialized with string 29 The regulator node's name should be initialized with a string
30to get matched with their hardware counterparts as follow: 30to get matched with their hardware counterparts as follow:
31 31
32 -LDOn : for LDOs, where n can lie in range 1 to 26. 32 -LDOn : for LDOs, where n can lie in range 1 to 26.
@@ -55,16 +55,14 @@ Example:
55 reg = <0x09>; 55 reg = <0x09>;
56 56
57 voltage-regulators { 57 voltage-regulators {
58 ldo11_reg { 58 ldo11_reg: LDO11 {
59 regulator-compatible = "LDO11";
60 regulator-name = "vdd_ldo11"; 59 regulator-name = "vdd_ldo11";
61 regulator-min-microvolt = <1900000>; 60 regulator-min-microvolt = <1900000>;
62 regulator-max-microvolt = <1900000>; 61 regulator-max-microvolt = <1900000>;
63 regulator-always-on; 62 regulator-always-on;
64 }; 63 };
65 64
66 buck1_reg { 65 buck1_reg: BUCK1 {
67 regulator-compatible = "BUCK1";
68 regulator-name = "vdd_mif"; 66 regulator-name = "vdd_mif";
69 regulator-min-microvolt = <950000>; 67 regulator-min-microvolt = <950000>;
70 regulator-max-microvolt = <1300000>; 68 regulator-max-microvolt = <1300000>;
@@ -72,8 +70,7 @@ Example:
72 regulator-boot-on; 70 regulator-boot-on;
73 }; 71 };
74 72
75 buck9_reg { 73 buck9_reg: BUCK9 {
76 regulator-compatible = "BUCK9";
77 regulator-name = "CAM_ISP_CORE_1.2V"; 74 regulator-name = "CAM_ISP_CORE_1.2V";
78 regulator-min-microvolt = <1000000>; 75 regulator-min-microvolt = <1000000>;
79 regulator-max-microvolt = <1200000>; 76 regulator-max-microvolt = <1200000>;