summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath9k/core.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez2008-10-04 00:45:26 +0200
committerJohn W. Linville2008-10-07 00:14:56 +0200
commita477e4e6d48d3ac7c7a75bad40585cb391e5c237 (patch)
tree9d090d6b00c92b7de9772b96d2a6055c213afcf6 /drivers/net/wireless/ath9k/core.h
parentath9k: kill ath9k's memzero() and use memset() instead (diff)
downloadkernel-qcow2-linux-a477e4e6d48d3ac7c7a75bad40585cb391e5c237.tar.gz
kernel-qcow2-linux-a477e4e6d48d3ac7c7a75bad40585cb391e5c237.tar.xz
kernel-qcow2-linux-a477e4e6d48d3ac7c7a75bad40585cb391e5c237.zip
ath9k: fix oops on trying to hold the wrong spinlock
We were trying to hold the wrong spinlock due to a typo on IEEE80211_BAR_CTL_TID_S's definition. We use this to compute the tid number and then hold this this tid number's spinlock. Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/core.h')
-rw-r--r--drivers/net/wireless/ath9k/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/core.h b/drivers/net/wireless/ath9k/core.h
index 80814c9910c9..5b4f1c48a618 100644
--- a/drivers/net/wireless/ath9k/core.h
+++ b/drivers/net/wireless/ath9k/core.h
@@ -309,7 +309,7 @@ void ath_descdma_cleanup(struct ath_softc *sc,
#define ATH_RX_TIMEOUT 40 /* 40 milliseconds */
#define WME_NUM_TID 16
#define IEEE80211_BAR_CTL_TID_M 0xF000 /* tid mask */
-#define IEEE80211_BAR_CTL_TID_S 2 /* tid shift */
+#define IEEE80211_BAR_CTL_TID_S 12 /* tid shift */
enum ATH_RX_TYPE {
ATH_RX_NON_CONSUMED = 0,