diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-12-18 11:57:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-12-18 11:57:42 +0000 |
commit | 4ccf215a3ee81fc95007d7f71068c834af6caa89 (patch) | |
tree | 157c01a5976795a45337af91db57c6b488a917eb /target/linux/ar7/patches-3.10/925-actiontec_leds.patch | |
parent | 0e035381dc3103ce9f8e9696eb28a9aa890d0c55 (diff) | |
download | upstream-4ccf215a3ee81fc95007d7f71068c834af6caa89.tar.gz upstream-4ccf215a3ee81fc95007d7f71068c834af6caa89.tar.bz2 upstream-4ccf215a3ee81fc95007d7f71068c834af6caa89.zip |
ar7: remove leftover 3.10 patches
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 43746
Diffstat (limited to 'target/linux/ar7/patches-3.10/925-actiontec_leds.patch')
-rw-r--r-- | target/linux/ar7/patches-3.10/925-actiontec_leds.patch | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/target/linux/ar7/patches-3.10/925-actiontec_leds.patch b/target/linux/ar7/patches-3.10/925-actiontec_leds.patch deleted file mode 100644 index 41af2cb54f..0000000000 --- a/target/linux/ar7/patches-3.10/925-actiontec_leds.patch +++ /dev/null @@ -1,95 +0,0 @@ ---- a/arch/mips/ar7/platform.c -+++ b/arch/mips/ar7/platform.c -@@ -465,31 +465,22 @@ static struct gpio_led fb_fon_leds[] = { - }, - }; - --static struct gpio_led gt701_leds[] = { -+static struct gpio_led actiontec_leds[] = { - { - .name = "inet:green", - .gpio = 13, -- .active_low = 1, -- }, -- { -- .name = "usb", -- .gpio = 12, -- .active_low = 1, - }, - { - .name = "inet:red", - .gpio = 9, -- .active_low = 1, - }, - { -- .name = "power:red", -+ .name = "power:green", - .gpio = 7, -- .active_low = 1, - }, - { -- .name = "power:green", -+ .name = "power:red", - .gpio = 8, -- .active_low = 1, - .default_trigger = "default-on", - }, - { -@@ -497,6 +488,44 @@ static struct gpio_led gt701_leds[] = { - .gpio = 10, - .active_low = 1, - }, -+ { -+ .name = "wifi", -+ .gpio = 6, -+ .active_low = 1, -+ }, -+ { -+ .name = "wifi:red", -+ .gpio = 3, -+ }, -+ { -+ .name = "standby", -+ .gpio = 4, -+ }, -+ { -+ .name = "wps", -+ .gpio = 16, -+ .active_low = 1, -+ }, -+ { -+ .name = "usb", -+ .gpio = 12, -+ .active_low = 1, -+ }, -+ { -+ .name = "voip", -+ .gpio = 15, -+ .active_low = 1, -+ }, -+ { -+ .name = "line1", -+ .gpio = 23, -+ .active_low = 1, -+ }, -+ { -+ .name = "line2", -+ .gpio = 25, -+ .active_low = 1, -+ }, - }; - - static struct gpio_led_platform_data ar7_led_data; -@@ -540,9 +569,9 @@ static void __init detect_leds(void) - } else if (strstr(prid, "CYWM") || strstr(prid, "CYWL")) { - ar7_led_data.num_leds = ARRAY_SIZE(titan_leds); - ar7_led_data.leds = titan_leds; -- } else if (strstr(prid, "GT701")) { -- ar7_led_data.num_leds = ARRAY_SIZE(gt701_leds); -- ar7_led_data.leds = gt701_leds; -+ } else if (strstr(prid, "GT7") || strstr(prid, "PK5000")) { -+ ar7_led_data.num_leds = ARRAY_SIZE(actiontec_leds); -+ ar7_led_data.leds = actiontec_leds; - } - } - |