diff options
author | John Crispin <blogic@openwrt.org> | 2014-11-14 16:58:29 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-11-14 16:58:29 +0000 |
commit | 1e3d1eb0031b468c979459e90bc6641aaf08091b (patch) | |
tree | 33665fa7424d10a5c4336bd9c9597da7b11e7390 /target/linux/ar71xx/files/arch | |
parent | 3368bcd2ba8859d891035d4d5230f2e285084167 (diff) | |
download | upstream-1e3d1eb0031b468c979459e90bc6641aaf08091b.tar.gz upstream-1e3d1eb0031b468c979459e90bc6641aaf08091b.tar.bz2 upstream-1e3d1eb0031b468c979459e90bc6641aaf08091b.zip |
ar71xx: Fix the sys LEDs on the EasyLink M150 and mini
Sets the system LED on the EasyLink M150 and mini to lower-case "easylink"
Signed-off-by: L. D. Pinney <ldpinney@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43271 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-el-m150.c | 2 | ||||
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-el-mini.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-el-m150.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-el-m150.c index 72a396d442..b95d6c2f68 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-el-m150.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-el-m150.c @@ -44,7 +44,7 @@ static struct flash_platform_data EL_M150_flash_data = { static struct gpio_led EL_M150_leds_gpio[] __initdata = { { - .name = "ELINK:green:system", + .name = "easylink:green:system", .gpio = EL_M150_GPIO_LED_SYSTEM, .active_low = 1, }, diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-el-mini.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-el-mini.c index aaccb0d257..9879b18f7c 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-el-mini.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-el-mini.c @@ -40,7 +40,7 @@ static struct flash_platform_data mini_flash_data = { static struct gpio_led mini_leds_gpio[] __initdata = { { - .name = "ELINK:green:system", + .name = "easylink:green:system", .gpio = MINI_GPIO_LED_SYSTEM, .active_low = 1, }, |