20ec6af15e
Move common LED configuration into a separate includible dtsi. Signed-off-by: Russell Senior <russell@personaltelco.net>
36 lines
617 B
Text
36 lines
617 B
Text
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
#include "ar7241_ubnt_xm.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
led-boot = &link4;
|
|
led-failsafe = &link4;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
link1 {
|
|
label = "ubnt:red:link1";
|
|
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
link2 {
|
|
label = "ubnt:orange:link2";
|
|
gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
link3 {
|
|
label = "ubnt:green:link3";
|
|
gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
link4: link4 {
|
|
label = "ubnt:green:link4";
|
|
gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
};
|