aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorAndreas Ziegler <dev@andreas-ziegler.de>2019-02-25 01:19:59 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2019-04-22 18:30:00 +0200
commite6e5435c5b418b4fa51fad2ce18866a52d31af51 (patch)
tree197817785f38bfd9df090dc584eb274f0c2e0b48 /target
parentecfe0f1cc4add5d8e54910651c58538f6dfce8a3 (diff)
downloadupstream-e6e5435c5b418b4fa51fad2ce18866a52d31af51.tar.gz
upstream-e6e5435c5b418b4fa51fad2ce18866a52d31af51.tar.bz2
upstream-e6e5435c5b418b4fa51fad2ce18866a52d31af51.zip
ar71xx: GL.iNet AR300M family: correct LED definitions
remove USB as this is no LED but power control rename WiFi LED with correct color red (like in stock firmware) set middle LED to be used for LAN link/activity Signed-off-by: Andreas Ziegler <dev@andreas-ziegler.de> (cherry picked from commit 53c46b504c630e4c9c5a00bf644a69919bfc0c03)
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/board.d/01_leds1
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-gl-ar300m.c9
2 files changed, 2 insertions, 8 deletions
diff --git a/target/linux/ar71xx/base-files/etc/board.d/01_leds b/target/linux/ar71xx/base-files/etc/board.d/01_leds
index 592133ac28..23f3d23bf5 100755
--- a/target/linux/ar71xx/base-files/etc/board.d/01_leds
+++ b/target/linux/ar71xx/base-files/etc/board.d/01_leds
@@ -409,6 +409,7 @@ fritz450e)
;;
gl-ar300m)
ucidef_set_led_wlan "wlan" "WLAN" "$board:red:wlan" "phy0tpt"
+ ucidef_set_led_netdev "lan" "LAN" "$board:green:lan" "eth1"
;;
gl-ar750)
ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:white:wlan2g" "phy1tpt"
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-gl-ar300m.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-gl-ar300m.c
index 2a2d2702bc..d10a910129 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-gl-ar300m.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-gl-ar300m.c
@@ -29,7 +29,6 @@
#include "machtypes.h"
#include "pci.h"
-#define GL_AR300M_GPIO_LED_USB 2
#define GL_AR300M_GPIO_LED_WLAN 14
#define GL_AR300M_GPIO_LED_LAN 13
#define GL_AR300M_GPIO_LED_SYSTEM 12
@@ -47,13 +46,7 @@
static struct gpio_led gl_ar300m_leds_gpio[] __initdata = {
{
- .name = "gl-ar300m:green:usb",
- .gpio = GL_AR300M_GPIO_LED_USB,
- .active_low = 0,
- .default_state = 1,
- },
- {
- .name = "gl-ar300m:green:wlan",
+ .name = "gl-ar300m:red:wlan",
.gpio = GL_AR300M_GPIO_LED_WLAN,
.active_low = 1,
},