libubox: update to latest version, fixes timer/process deletion on uloop_done()
[openwrt.git] / package / mac80211 / patches / 572-ath9k-set-MAC-version-for-AR9550.patch
1 From 9bd8677ad5f1814e0f784f92d07ba8bd38c6bc13 Mon Sep 17 00:00:00 2001
2 From: Gabor Juhos <juhosg@openwrt.org>
3 Date: Mon, 2 Jul 2012 17:10:14 +0200
4 Subject: [PATCH 03/20] ath9k: set MAC version 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/hw.c |    3 +++
10  1 files changed, 3 insertions(+), 0 deletions(-)
11
12 --- a/drivers/net/wireless/ath/ath9k/hw.c
13 +++ b/drivers/net/wireless/ath/ath9k/hw.c
14 @@ -343,6 +343,9 @@ static void ath9k_hw_read_revisions(stru
15                 val = REG_READ(ah, AR_SREV);
16                 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
17                 return;
18 +       case AR9300_DEVID_QCA955X:
19 +               ah->hw_version.macVersion = AR_SREV_VERSION_9550;
20 +               return;
21         }
22  
23         val = REG_READ(ah, AR_SREV) & AR_SREV_ID;