diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-11-03 14:55:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-11-03 14:55:53 +0000 |
commit | b4e2c09b46d37dd2e7020b9f8f157c3fcfc9b76d (patch) | |
tree | df28bbae0879ec65f71f706c2ce7a9a13e5eba72 /package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch | |
parent | 00e1797f14aae1b62dc18be41c65b507e07b0d42 (diff) | |
download | upstream-b4e2c09b46d37dd2e7020b9f8f157c3fcfc9b76d.tar.gz upstream-b4e2c09b46d37dd2e7020b9f8f157c3fcfc9b76d.tar.bz2 upstream-b4e2c09b46d37dd2e7020b9f8f157c3fcfc9b76d.zip |
ar71xx: improve the wndr3700 quirks - move most of the code out of ath9k and instead allow the platform device to specify gpio overrides - fixes 5ghz signal strength issues
SVN-Revision: 23822
Diffstat (limited to 'package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch')
-rw-r--r-- | package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch b/package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch deleted file mode 100644 index 03d017a6de..0000000000 --- a/package/mac80211/patches/410-ath9k-wndr3700-led-pin-fix.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- a/drivers/net/wireless/ath/ath9k/gpio.c -+++ b/drivers/net/wireless/ath/ath9k/gpio.c -@@ -147,7 +147,9 @@ void ath_init_leds(struct ath_softc *sc) - if (AR_SREV_9100(sc->sc_ah)) - return; - -- if (AR_SREV_9287(sc->sc_ah)) -+ if (sc->quirk_wndr3700) -+ sc->sc_ah->led_pin = ATH_LED_PIN_WNDR3700; -+ else if (AR_SREV_9287(sc->sc_ah)) - sc->sc_ah->led_pin = ATH_LED_PIN_9287; - else - sc->sc_ah->led_pin = ATH_LED_PIN_DEF; ---- a/drivers/net/wireless/ath/ath9k/ath9k.h -+++ b/drivers/net/wireless/ath/ath9k/ath9k.h -@@ -455,6 +455,7 @@ void ath9k_btcoex_timer_pause(struct ath - - #define ATH_LED_PIN_DEF 1 - #define ATH_LED_PIN_9287 8 -+#define ATH_LED_PIN_WNDR3700 5 - #define ATH_LED_ON_DURATION_IDLE 350 /* in msecs */ - #define ATH_LED_OFF_DURATION_IDLE 250 /* in msecs */ - |