[PATCH v4 5/5] ARM: dts: Add LEDs to exynos5410-odroidxu
From: javier@dowhile0.org (Javier Martinez Canillas)
Date: 2015-03-16 08:02:10
Also in:
linux-samsung-soc, lkml
Hello Andreas, On Sun, Mar 15, 2015 at 11:00 PM, Andreas F?rber [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Signed-off-by: Hakjoo Kim <redacted> Signed-off-by: Andreas F?rber <afaerber@suse.de> --- v2 -> v3: Unchanged v1 -> v2: * Filled in Sob from Hakjoo Kim arch/arm/boot/dts/exynos5410-odroidxu.dts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+)diff --git a/arch/arm/boot/dts/exynos5410-odroidxu.dts b/arch/arm/boot/dts/exynos5410-odroidxu.dts index 97310bb727e2..b02cd3ab7b38 100644 --- a/arch/arm/boot/dts/exynos5410-odroidxu.dts +++ b/arch/arm/boot/dts/exynos5410-odroidxu.dts@@ -15,6 +15,7 @@ /dts-v1/; #include "exynos5410.dtsi" +#include <dt-bindings/gpio/gpio.h> / { model = "ODROID-XU based on EXYNOS5410"; compatible = "hardkernel,odroid-xu", "samsung,exynos5410", "samsung,exynos5";@@ -39,6 +40,30 @@ reg = <0x02037000 0x1000>; }; + leds { + compatible = "gpio-leds"; + + blue { + label = "blue:heartbeat"; + gpios = <&gpb2 2 GPIO_ACTIVE_HIGH>; + default-state = "off"; + linux,default-trigger = "heartbeat"; + }; + + green { + label = "green:activity"; + gpios = <&gpb2 1 GPIO_ACTIVE_HIGH>; + default-state = "off"; + linux,default-trigger = "mmc0"; + }; + + red { + label = "red:activity"; + gpios = <&gpx2 3 GPIO_ACTIVE_HIGH>; + default-state = "off"; + linux,default-trigger = "mmc1"; + };
I see that you are sorting alphabetically using the node name but for example in pinctrl lines we were sorting using the GPIO bank and offset so if we want to use the same policy here, this should be green, blue and red. Either way is good to me though so is up to you. Reviewed-by: Javier Martinez Canillas <redacted> Best regards, Javier