mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 18:56:41 +07:00
ARM: dts: tx6: Remove 'enable-active-low' property
Property 'enable-active-low' does not exist. Only 'enable-active-high' is valid, and when this property is absent the gpio regulator will act as active low by default. So remove the unexisting 'enable-active-low' property. Currently the GPIO flag is GPIO_ACTIVE_HIGH. In order to make the dts description accurate, pass the GPIO_ACTIVE_LOW flag instead. This change is safe because the gpio regulator driver does not take the GPIO flag polarity into account. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Acked-by: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
parent
71ba49902d
commit
8b7be72b1f
@ -133,8 +133,7 @@ reg_can_xcvr: regulator-can-xcvr {
|
||||
regulator-max-microvolt = <3300000>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_flexcan_xcvr>;
|
||||
gpio = <&gpio4 21 GPIO_ACTIVE_HIGH>;
|
||||
enable-active-low;
|
||||
gpio = <&gpio4 21 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
reg_lcd0_pwr: regulator-lcd0-pwr {
|
||||
|
@ -173,8 +173,7 @@ reg_can_xcvr: regulator-canxcvr {
|
||||
regulator-max-microvolt = <3300000>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_flexcan_xcvr>;
|
||||
gpio = <&gpio3 5 GPIO_ACTIVE_HIGH>;
|
||||
enable-active-low;
|
||||
gpio = <&gpio3 5 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
reg_lcd_pwr: regulator-lcdpwr {
|
||||
|
Loading…
Reference in New Issue
Block a user