aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2014-04-12 17:42:33 +0000
committerGabor Juhos <juhosg@openwrt.org>2014-04-12 17:42:33 +0000
commit8204dc3a79b4b37428be819d852a558710438d13 (patch)
tree55dbd59abc67b31598b259c67bdd283af8a0765a /target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c
parent98ce0e139344fcab410ce3af7def1e3b29e76bd5 (diff)
downloadmaster-187ad058-8204dc3a79b4b37428be819d852a558710438d13.tar.gz
master-187ad058-8204dc3a79b4b37428be819d852a558710438d13.tar.bz2
master-187ad058-8204dc3a79b4b37428be819d852a558710438d13.zip
ar71xx: wndr4300: change 'orange' to 'amber' in LED color names
The hardware manual says amber so change the color part of the LED names to reflect that. Also update the constant names. Based on the the WNDR3700v4 support patch from Ralph Perlich: http://patchwork.openwrt.org/patch/4763/ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40473 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c
index 0ecedff115..d67b8f85e1 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr4300.c
@@ -2,6 +2,7 @@
* NETGEAR WNDR4300 board support
*
* Copyright (C) 2012 Gabor Juhos <juhosg@openwrt.org>
+ * Copyright (C) 2014 Ralph Perlich <rpsoft@arcor.de>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
@@ -31,13 +32,13 @@
#include "machtypes.h"
#define WNDR4300_GPIO_LED_POWER_GREEN 0
-#define WNDR4300_GPIO_LED_POWER_ORANGE 2
+#define WNDR4300_GPIO_LED_POWER_AMBER 2
#define WNDR4300_GPIO_LED_USB 13
#define WNDR4300_GPIO_LED_WAN_GREEN 1
-#define WNDR4300_GPIO_LED_WAN_ORANGE 3
+#define WNDR4300_GPIO_LED_WAN_AMBER 3
#define WNDR4300_GPIO_LED_WLAN5G 14
#define WNDR4300_GPIO_LED_WPS_GREEN 16
-#define WNDR4300_GPIO_LED_WPS_ORANGE 17
+#define WNDR4300_GPIO_LED_WPS_AMBER 17
#define WNDR4300_GPIO_BTN_RESET 21
#define WNDR4300_GPIO_BTN_WIRELESS 15
@@ -53,8 +54,8 @@ static struct gpio_led wndr4300_leds_gpio[] __initdata = {
.active_low = 1,
},
{
- .name = "netgear:orange:power",
- .gpio = WNDR4300_GPIO_LED_POWER_ORANGE,
+ .name = "netgear:amber:power",
+ .gpio = WNDR4300_GPIO_LED_POWER_AMBER,
.active_low = 1,
},
{
@@ -63,8 +64,8 @@ static struct gpio_led wndr4300_leds_gpio[] __initdata = {
.active_low = 1,
},
{
- .name = "netgear:orange:wan",
- .gpio = WNDR4300_GPIO_LED_WAN_ORANGE,
+ .name = "netgear:amber:wan",
+ .gpio = WNDR4300_GPIO_LED_WAN_AMBER,
.active_low = 1,
},
{
@@ -78,8 +79,8 @@ static struct gpio_led wndr4300_leds_gpio[] __initdata = {
.active_low = 1,
},
{
- .name = "netgear:orange:wps",
- .gpio = WNDR4300_GPIO_LED_WPS_ORANGE,
+ .name = "netgear:amber:wps",
+ .gpio = WNDR4300_GPIO_LED_WPS_AMBER,
.active_low = 1,
},
{