diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2021-01-06 19:33:57 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:29 +0900 |
commit | dcf46e8861143c5efe31a6b9244c9c5cfa03c2e1 (patch) | |
tree | c642fb83a362d05334074880217593c5f3253297 /arch | |
parent | 3f23d45665ea5a5142bb209ad819d6f6d3b44fc4 (diff) | |
download | u-boot-dcf46e8861143c5efe31a6b9244c9c5cfa03c2e1.tar.gz u-boot-dcf46e8861143c5efe31a6b9244c9c5cfa03c2e1.tar.bz2 u-boot-dcf46e8861143c5efe31a6b9244c9c5cfa03c2e1.zip |
ARM: dts: meson: change from ACTIVE_HIGH to ACTIVE_LOW
Whne button doesn't connect, it's always high.
So it needs to fix its case.
In our button's case,
- out : PIN_11
- vcc : GND
- gnd : Not used.
Change-Id: Ic8cf0f5853045cf181ad3c1c53e14e0fceb73b41
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi b/arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi index 77ea34bee1..a4bf195476 100644 --- a/arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi +++ b/arch/arm/dts/meson-sm1-odroid-c4-u-boot.dtsi @@ -28,7 +28,7 @@ power_key { label = "PowerKey"; - gpios = <&gpio GPIOX_3 GPIO_ACTIVE_HIGH>; + gpios = <&gpio GPIOX_3 GPIO_ACTIVE_LOW>; }; }; }; |