diff options
| author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-03-24 19:23:45 +0000 | 
|---|---|---|
| committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-03-24 19:23:45 +0000 | 
| commit | c981f92a29a2dd4e511e843f13c6d91b5f670c54 (patch) | |
| tree | a0e70ca745d27945d88e56c9bde40ca686da7698 /target/linux/ar71xx/files/arch | |
| parent | cba5c9b4a944a1216aa9b1f240865ce177764ab4 (diff) | |
ar71xx: remove numeric suffix of the TL-WDR3500 USB LED
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36118 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch')
| -rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c index 05fe83d4a..785b21fd8 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c @@ -29,7 +29,7 @@  #include "dev-wmac.h"  #include "machtypes.h" -#define WDR3500_GPIO_LED_USB1		11 +#define WDR3500_GPIO_LED_USB		11  #define WDR3500_GPIO_LED_WLAN2G		13  #define WDR3500_GPIO_LED_SYSTEM		14  #define WDR3500_GPIO_LED_QSS		15 @@ -37,7 +37,7 @@  #define WDR3500_GPIO_BTN_WPS		16  #define WDR3500_GPIO_BTN_RFKILL		17 -#define WDR3500_GPIO_USB1_POWER		22 +#define WDR3500_GPIO_USB_POWER		22  #define WDR3500_KEYS_POLL_INTERVAL	20	/* msecs */  #define WDR3500_KEYS_DEBOUNCE_INTERVAL	(3 * WDR3500_KEYS_POLL_INTERVAL) @@ -68,8 +68,8 @@ static struct gpio_led wdr3500_leds_gpio[] __initdata = {  		.active_low	= 1,  	},  	{ -		.name		= "tp-link:green:usb1", -		.gpio		= WDR3500_GPIO_LED_USB1, +		.name		= "tp-link:green:usb", +		.gpio		= WDR3500_GPIO_LED_USB,  		.active_low	= 1,  	},  	{ @@ -142,9 +142,9 @@ static void __init wdr3500_setup(void)  	ath79_register_eth(0); -	gpio_request_one(WDR3500_GPIO_USB1_POWER, +	gpio_request_one(WDR3500_GPIO_USB_POWER,  			 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED, -			 "USB1 power"); +			 "USB power");  	ath79_register_usb();  } | 
