ARM: dts: mx53: Remove 'enable-active-low' property
'enable-active-low' is not a valid property for a GPIO controlled regulator. According to Documentation/devicetree/bindings/regulator/gpio-regulator.txt: "Optional properties: ... - enable-active-high : Polarity of GPIO is active high (default is low)." ,so the correct way to define an active-low GPIO controlled regulator is to simply not pass 'enable-active-high'. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
This commit is contained in:
parent
51aba3255e
commit
9bf52c0e93
|
@ -103,7 +103,6 @@
|
||||||
regulator-min-microvolt = <5000000>;
|
regulator-min-microvolt = <5000000>;
|
||||||
regulator-max-microvolt = <5000000>;
|
regulator-max-microvolt = <5000000>;
|
||||||
gpio = <&gpio1 2 0>;
|
gpio = <&gpio1 2 0>;
|
||||||
enable-active-low;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,6 @@
|
||||||
regulator-name = "lcd-supply";
|
regulator-name = "lcd-supply";
|
||||||
gpio = <&gpio2 5 0>;
|
gpio = <&gpio2 5 0>;
|
||||||
startup-delay-us = <5000>;
|
startup-delay-us = <5000>;
|
||||||
enable-active-low;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
reg_3p2v: regulator@1 {
|
reg_3p2v: regulator@1 {
|
||||||
|
|
|
@ -96,7 +96,6 @@
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&pinctrl_can_xcvr>;
|
pinctrl-0 = <&pinctrl_can_xcvr>;
|
||||||
gpio = <&gpio4 21 GPIO_ACTIVE_HIGH>;
|
gpio = <&gpio4 21 GPIO_ACTIVE_HIGH>;
|
||||||
enable-active-low;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
reg_usbh1_vbus: regulator@3 {
|
reg_usbh1_vbus: regulator@3 {
|
||||||
|
|
Loading…
Reference in New Issue