diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-02-07 14:48:43 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2024-02-07 14:48:43 +0100 |
commit | 19c45b95dbb53a7ba1a26c201277ca86293bf404 (patch) | |
tree | ec1483fd54dcee17a80368c5fa035053124d7b36 /target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts | |
parent | 7630c052c46925015403564068abdc4b8ca89388 (diff) |
ramips: convert to new LED color/function format where possible
Initial conversion to new LED color/function format
and drop label format where possible. The same label
is composed at runtime.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts')
-rw-r--r-- | target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts b/target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts index 73e65128e5..e5441d2d65 100644 --- a/target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts +++ b/target/linux/ramips/dts/rt3050_dlink_dir-600-b1.dts @@ -2,6 +2,7 @@ #include <dt-bindings/gpio/gpio.h> #include <dt-bindings/input/input.h> +#include <dt-bindings/leds/common.h> / { compatible = "dlink,dir-600-b1", "ralink,rt3050-soc"; @@ -86,27 +87,32 @@ compatible = "gpio-leds"; status { - label = "amber:status"; + function = LED_FUNCTION_STATUS; + color = <LED_COLOR_ID_AMBER>; gpios = <&gpio0 8 GPIO_ACTIVE_LOW>; }; led_status_green: status2 { - label = "green:status"; + function = LED_FUNCTION_STATUS; + color = <LED_COLOR_ID_GREEN>; gpios = <&gpio0 9 GPIO_ACTIVE_LOW>; }; wan { - label = "amber:wan"; + function = LED_FUNCTION_WAN; + color = <LED_COLOR_ID_AMBER>; gpios = <&gpio0 14 GPIO_ACTIVE_LOW>; }; wan2 { - label = "green:wan"; + function = LED_FUNCTION_WAN; + color = <LED_COLOR_ID_GREEN>; gpios = <&gpio0 12 GPIO_ACTIVE_LOW>; }; wps { - label = "blue:wps"; + function = LED_FUNCTION_WPS; + color = <LED_COLOR_ID_BLUE>; gpios = <&gpio0 13 GPIO_ACTIVE_LOW>; }; }; |