ARM: orion5x: use existing dt-bindings include for Device Tree files

The orion5x-lacie-ethernet-disk-mini-v2.dts can benefit from using
gpio.h and input.h dt-bindings headers to replace hardcoded values by
more meaningful macros.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Link: https://lkml.kernel.org/r/1398202002-28530-13-git-send-email-thomas.petazzoni@free-electrons.com
Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
Thomas Petazzoni 2014-04-22 23:26:16 +02:00 committed by Jason Cooper
parent 48be9707b4
commit 2a93474299

View File

@ -8,6 +8,8 @@
/dts-v1/; /dts-v1/;
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include "orion5x.dtsi" #include "orion5x.dtsi"
/ { / {
@ -40,8 +42,8 @@ gpio_keys {
#size-cells = <0>; #size-cells = <0>;
button@1 { button@1 {
label = "Power-on Switch"; label = "Power-on Switch";
linux,code = <116>; /* KEY_POWER */ linux,code = <KEY_POWER>;
gpios = <&gpio0 18 0>; gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>;
}; };
}; };
@ -50,7 +52,7 @@ gpio_leds {
led@1 { led@1 {
label = "power:blue"; label = "power:blue";
gpios = <&gpio0 16 1>; gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
}; };
}; };
}; };