projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0caa7b1
)
ath9k: Fix antenna assignment bug in TX status processing
author
Sujith
<Sujith.Manoharan@atheros.com>
Mon, 16 Feb 2009 07:53:21 +0000
(13:23 +0530)
committer
John W. Linville
<linville@tuxdriver.com>
Fri, 27 Feb 2009 19:52:38 +0000
(14:52 -0500)
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath9k/mac.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath9k/mac.c
b/drivers/net/wireless/ath9k/mac.c
index a6c204283ad56d415d90ecaa663961e3441b2230..f757bc7eec68da37e68889a85385712a5fa390e3 100644
(file)
--- a/
drivers/net/wireless/ath9k/mac.c
+++ b/
drivers/net/wireless/ath9k/mac.c
@@
-285,7
+285,7
@@
int ath9k_hw_txprocdesc(struct ath_hw *ah, struct ath_desc *ds)
ds->ds_txstat.ts_shortretry = MS(ads->ds_txstatus1, AR_RTSFailCnt);
ds->ds_txstat.ts_longretry = MS(ads->ds_txstatus1, AR_DataFailCnt);
ds->ds_txstat.ts_virtcol = MS(ads->ds_txstatus1, AR_VirtRetryCnt);
- ds->ds_txstat.ts_antenna =
1
;
+ ds->ds_txstat.ts_antenna =
0
;
return 0;
}