libubox: update to latest version, fixes timer/process deletion on uloop_done()
[openwrt.git] / package / mac80211 / patches / 587-ath9k-enable-PLL-workaround-for-AR9550.patch
1 From 29fe3ae617d86bf1b39d15e43cee29b723118648 Mon Sep 17 00:00:00 2001
2 From: Gabor Juhos <juhosg@openwrt.org>
3 Date: Mon, 2 Jul 2012 17:15:59 +0200
4 Subject: [PATCH 18/20] ath9k: enable PLL workaround for AR9550
5
6 Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
7 Acked-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
8 ---
9  drivers/net/wireless/ath/ath9k/main.c |    3 ++-
10  1 files changed, 2 insertions(+), 1 deletions(-)
11
12 --- a/drivers/net/wireless/ath/ath9k/main.c
13 +++ b/drivers/net/wireless/ath/ath9k/main.c
14 @@ -167,7 +167,8 @@ static void ath_restart_work(struct ath_
15  
16         ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
17  
18 -       if (AR_SREV_9485(sc->sc_ah) || AR_SREV_9340(sc->sc_ah))
19 +       if (AR_SREV_9340(sc->sc_ah) || AR_SREV_9485(sc->sc_ah) ||
20 +           AR_SREV_9550(sc->sc_ah))
21                 ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
22                                      msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
23