diff options
author | Tony Lindgren <tony@atomide.com> | 2016-09-20 20:37:35 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-09-20 20:37:35 +0200 |
commit | d6c91b99baeece562ca1aaf26396d32655197477 (patch) | |
tree | 2b245a5cfebedc16eaca85c6e84be4850ba2911b /arch/arm | |
parent | ARM: dts: am335x-evmsk: Add blue-and-red-wiring -property to lcdc node (diff) | |
download | linux-d6c91b99baeece562ca1aaf26396d32655197477.tar.xz linux-d6c91b99baeece562ca1aaf26396d32655197477.zip |
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')
-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 @@ power-button { label = "Power Button"; linux,code = <KEY_POWER>; - gpios = <&gpio4 22 GPIO_ACTIVE_HIGH>; + gpios = <&gpio4 22 GPIO_ACTIVE_LOW>; }; }; |