diff options
author | Krzysztof Kozlowski <[email protected]> | 2023-02-08 18:26:32 +0100 |
---|---|---|
committer | Krzysztof Kozlowski <[email protected]> | 2023-02-09 12:05:16 +0100 |
commit | 0e06b987d1b7469ff1b4f7a68466859f94e7221a (patch) | |
tree | f0312b27534e6d1a112f4d65cf3526cd1cbbfbc5 | |
parent | 428218307dd2ef175314f39f141beb93163ae1ca (diff) |
ARM: dts: exynos: add "gpios" suffix to wlf,ldo1ena on Midas
The GPIOs properties should end with "gpios" suffix and Linux gpiolib
already handles both names, so switch to preferred one.
While touching the lines, replace open-coded GPIO_ACTIVE_HIGH flag.
Tested-by: Henrik Grimler <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/exynos4412-midas.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/exynos4412-midas.dtsi b/arch/arm/boot/dts/exynos4412-midas.dtsi index d5074fa57142..525f945c4b91 100644 --- a/arch/arm/boot/dts/exynos4412-midas.dtsi +++ b/arch/arm/boot/dts/exynos4412-midas.dtsi @@ -653,8 +653,8 @@ CPVDD-supply = <&vbatt_reg>; SPKVDD1-supply = <&vbatt_reg>; SPKVDD2-supply = <&vbatt_reg>; - wlf,ldo1ena = <&gpj0 4 0>; - wlf,ldo2ena = <&gpj0 4 0>; + wlf,ldo1ena-gpios = <&gpj0 4 GPIO_ACTIVE_HIGH>; + wlf,ldo2ena-gpios = <&gpj0 4 GPIO_ACTIVE_HIGH>; }; }; |