diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2013-08-14 11:45:55 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-08-15 16:08:07 -0400 |
commit | 009af8fb69c9d6274b3a49377be5ba2379e188d6 (patch) | |
tree | c6cb42c2a88590fdaa24f6daa20e1c2a723da046 /drivers/net/wireless/ath/ath9k/mac.c | |
parent | e3acd13d2141fa25566877e8f575065f204317f5 (diff) |
ath9k: Identify first subframe in an A-MPDU
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/mac.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/mac.c b/drivers/net/wireless/ath/ath9k/mac.c index 2ef05ebffbcf..a3eff0986a3f 100644 --- a/drivers/net/wireless/ath/ath9k/mac.c +++ b/drivers/net/wireless/ath/ath9k/mac.c | |||
@@ -583,9 +583,9 @@ int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, | |||
583 | rs->rs_rate = MS(ads.ds_rxstatus0, AR_RxRate); | 583 | rs->rs_rate = MS(ads.ds_rxstatus0, AR_RxRate); |
584 | rs->rs_more = (ads.ds_rxstatus1 & AR_RxMore) ? 1 : 0; | 584 | rs->rs_more = (ads.ds_rxstatus1 & AR_RxMore) ? 1 : 0; |
585 | 585 | ||
586 | rs->rs_firstaggr = (ads.ds_rxstatus8 & AR_RxFirstAggr) ? 1 : 0; | ||
586 | rs->rs_isaggr = (ads.ds_rxstatus8 & AR_RxAggr) ? 1 : 0; | 587 | rs->rs_isaggr = (ads.ds_rxstatus8 & AR_RxAggr) ? 1 : 0; |
587 | rs->rs_moreaggr = | 588 | rs->rs_moreaggr = (ads.ds_rxstatus8 & AR_RxMoreAggr) ? 1 : 0; |
588 | (ads.ds_rxstatus8 & AR_RxMoreAggr) ? 1 : 0; | ||
589 | rs->rs_antenna = MS(ads.ds_rxstatus3, AR_RxAntenna); | 589 | rs->rs_antenna = MS(ads.ds_rxstatus3, AR_RxAntenna); |
590 | 590 | ||
591 | /* directly mapped flags for ieee80211_rx_status */ | 591 | /* directly mapped flags for ieee80211_rx_status */ |