diff options
author | Tony Lindgren <tony@atomide.com> | 2016-09-20 14:37:35 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-09-20 14:37:35 -0400 |
commit | d6c91b99baeece562ca1aaf26396d32655197477 (patch) | |
tree | 2b245a5cfebedc16eaca85c6e84be4850ba2911b /arch/arm/boot | |
parent | 3dc4674a603093ddcd013a54f759d75aa15de032 (diff) |
ARM: dts: Fix igepv5 power button GPIO direction
It should be GPIO_ACTIVE_LOW instead of GPIO_ACTIVE_HIGH as
pointed out by Pau Pajuel <ppajuel@gmail.com>.
Cc: Agustà Fontquerni i Gorchs <afontquerni@iseebcn.com>
Cc: Enric Balletbo Serra <eballetbo@gmail.com>
Cc: Javier Martinez Canillas <javier@osg.samsung.com>
Cc: Pau Pajuel <ppajuel@gmail.com>
Fixes: b118c6a6ffa1 ("ARM: dts: Add power button support for igepv5")
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/omap5-igep0050.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap5-igep0050.dts b/arch/arm/boot/dts/omap5-igep0050.dts index 44e03b9be1f1..1810ae75d73c 100644 --- a/arch/arm/boot/dts/omap5-igep0050.dts +++ b/arch/arm/boot/dts/omap5-igep0050.dts | |||
@@ -27,7 +27,7 @@ | |||
27 | power-button { | 27 | power-button { |
28 | label = "Power Button"; | 28 | label = "Power Button"; |
29 | linux,code = <KEY_POWER>; | 29 | linux,code = <KEY_POWER>; |
30 | gpios = <&gpio4 22 GPIO_ACTIVE_HIGH>; | 30 | gpios = <&gpio4 22 GPIO_ACTIVE_LOW>; |
31 | }; | 31 | }; |
32 | }; | 32 | }; |
33 | 33 | ||