aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-07-03 13:13:32 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-07-09 16:36:33 -0400
commitc12b60214c546645e2e7f659ab6614cc506536b3 (patch)
tree02431967dfc0f58fa17593f3790b76108efc67e0
parentfc05a3178476695603c25b6be8c28e8457df0cc2 (diff)
ath9k: enable PLL workaround for AR9550
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Acked-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath9k/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
index 06a3d1c7f2b9..248e5b24acfa 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -171,7 +171,8 @@ static void ath_restart_work(struct ath_softc *sc)
171 171
172 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0); 172 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
173 173
174 if (AR_SREV_9485(sc->sc_ah) || AR_SREV_9340(sc->sc_ah)) 174 if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9485(sc->sc_ah) ||
175 AR_SREV_9550(sc->sc_ah))
175 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work, 176 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
176 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL)); 177 msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
177 178