Many consumer "routers" have dedicated LEDs for specific WiFi bands, e.g. one for 2.4 GHz and one for 5 GHz. These LEDs specifically indicate the state of the relevant band, so the latter should be included in the function name. LED_FUNCTION_WLAN will remain for general cases or when the LED is used for more than one band. This essentially equivalent to how we use LED_FUNCTION_LAN and LED_FUNCTION_WAN instead of just having LED_FUNCTION_ETHERNET. Signed-off-by: Adrian Schmutzler <freifunk@xxxxxxxxxxxxxxxxxxx> --- include/dt-bindings/leds/common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/dt-bindings/leds/common.h b/include/dt-bindings/leds/common.h index 52b619d44ba2..52db8a9032d0 100644 --- a/include/dt-bindings/leds/common.h +++ b/include/dt-bindings/leds/common.h @@ -89,6 +89,8 @@ #define LED_FUNCTION_USB "usb" #define LED_FUNCTION_WAN "wan" #define LED_FUNCTION_WLAN "wlan" +#define LED_FUNCTUON_WLAN2G "wlan2g" +#define LED_FUNCTUON_WLAN5G "wlan5g" #define LED_FUNCTION_WPS "wps" #endif /* __DT_BINDINGS_LEDS_H */ -- 2.20.1