This adds the folowing for the TP-Link wr1043nd board 1. USB and WLAN LEDS 2. Change QSS LED from red to green 3. Fix polarity of the QSS LED
Signed-off-by: Andrew Tarabaras <[email protected]> Index: target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c =================================================================== --- target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c (revision 18810) +++ target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-wr1043nd.c (working copy) @@ -21,8 +21,10 @@ #include "devices.h" +#define TL_WR1043ND_GPIO_LED_USB 1 #define TL_WR1043ND_GPIO_LED_SYSTEM 2 #define TL_WR1043ND_GPIO_LED_QSS 5 +#define TL_WR1043ND_GPIO_LED_WLAN 9 #define TL_WR1043ND_GPIO_BTN_RESET 3 #define TL_WR1043ND_GPIO_BTN_QSS 7 @@ -76,12 +78,20 @@ static struct gpio_led tl_wr1043nd_leds_gpio[] __initdata = { { + .name = "tl-wr1043nd:green:usb", + .gpio = TL_WR1043ND_GPIO_LED_USB, + .active_low = 1, + }, { .name = "tl-wr1043nd:green:system", .gpio = TL_WR1043ND_GPIO_LED_SYSTEM, .active_low = 1, }, { - .name = "tl-wr1043nd:red:qss", + .name = "tl-wr1043nd:green:qss", .gpio = TL_WR1043ND_GPIO_LED_QSS, + .active_low = 0, + }, { + .name = "tl-wr1043nd:green:wlan", + .gpio = TL_WR1043ND_GPIO_LED_WLAN, .active_low = 1, } }; _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
