diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-09-21 15:55:50 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-09-21 15:55:50 +0000 |
commit | e33ccdc2958f0929196e144543fd17d50a72728a (patch) | |
tree | 99f7f9bc68d2b4ec734bf80c97b5f281dc351434 /target/linux/ar71xx/files | |
parent | d381cd170da1f5e5dc36cc6df6b93932f63de92e (diff) | |
download | upstream-e33ccdc2958f0929196e144543fd17d50a72728a.tar.gz upstream-e33ccdc2958f0929196e144543fd17d50a72728a.tar.bz2 upstream-e33ccdc2958f0929196e144543fd17d50a72728a.zip |
ar71xx: use netgear prefix for WNDR3700 LED names
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 38098
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-wndr3700.c | 10 | ||||
-rw-r--r-- | target/linux/ar71xx/files/drivers/leds/leds-wndr3700-usb.c | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr3700.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr3700.c index fccf1c6633..1315bab037 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr3700.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndr3700.c @@ -51,23 +51,23 @@ static struct gpio_led wndr3700_leds_gpio[] __initdata = { { - .name = "wndr3700:green:power", + .name = "netgear:green:power", .gpio = WNDR3700_GPIO_LED_POWER_GREEN, .active_low = 1, }, { - .name = "wndr3700:orange:power", + .name = "netgear:orange:power", .gpio = WNDR3700_GPIO_LED_POWER_ORANGE, .active_low = 1, }, { - .name = "wndr3700:green:wps", + .name = "netgear:green:wps", .gpio = WNDR3700_GPIO_LED_WPS_GREEN, .active_low = 1, }, { - .name = "wndr3700:orange:wps", + .name = "netgear:orange:wps", .gpio = WNDR3700_GPIO_LED_WPS_ORANGE, .active_low = 1, }, { - .name = "wndr3700:green:wan", + .name = "netgear:green:wan", .gpio = WNDR3700_GPIO_LED_WAN_GREEN, .active_low = 1, } diff --git a/target/linux/ar71xx/files/drivers/leds/leds-wndr3700-usb.c b/target/linux/ar71xx/files/drivers/leds/leds-wndr3700-usb.c index e6565dcdcd..6425b055da 100644 --- a/target/linux/ar71xx/files/drivers/leds/leds-wndr3700-usb.c +++ b/target/linux/ar71xx/files/drivers/leds/leds-wndr3700-usb.c @@ -32,7 +32,7 @@ static enum led_brightness wndr3700_usb_led_get(struct led_classdev *cdev) } static struct led_classdev wndr3700_usb_led = { - .name = "wndr3700:green:usb", + .name = "netgear:green:usb", .brightness_set = wndr3700_usb_led_set, .brightness_get = wndr3700_usb_led_get, }; |