ARM: dts: imx6qdl-sabresd: correct gpio key's active state
authorAnson Huang <b20788@freescale.com>
Mon, 20 Jan 2014 12:02:38 +0000 (20:02 +0800)
committerShawn Guo <shawn.guo@linaro.org>
Mon, 10 Feb 2014 08:27:42 +0000 (16:27 +0800)
From schematic, the power, vol+/- key's active state is low,
so we need to set the gpio flag to active low.

Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/boot/dts/imx6qdl-sabresd.dtsi

index bbe2ee1..0d816d3 100644 (file)
@@ -10,6 +10,7 @@
  * http://www.gnu.org/copyleft/gpl.html
  */
 
+#include <dt-bindings/gpio/gpio.h>
 #include <dt-bindings/input/input.h>
 
 / {
 
                power {
                        label = "Power Button";
-                       gpios = <&gpio3 29 0>;
+                       gpios = <&gpio3 29 GPIO_ACTIVE_LOW>;
                        gpio-key,wakeup;
                        linux,code = <KEY_POWER>;
                };
 
                volume-up {
                        label = "Volume Up";
-                       gpios = <&gpio1 4 0>;
+                       gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
                        gpio-key,wakeup;
                        linux,code = <KEY_VOLUMEUP>;
                };
 
                volume-down {
                        label = "Volume Down";
-                       gpios = <&gpio1 5 0>;
+                       gpios = <&gpio1 5 GPIO_ACTIVE_LOW>;
                        gpio-key,wakeup;
                        linux,code = <KEY_VOLUMEDOWN>;
                };