diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-02-26 16:54:45 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-02-26 16:54:45 -0500 |
commit | 64463da913bc8f791980ba28d93ac5e716ab9cc5 (patch) | |
tree | cf958678f7cf0b615a52356beb2d18240424ab4a /drivers/net/wireless/ath | |
parent | 4a6967b88af02eebeedfbb91bc09160750225bb5 (diff) | |
parent | a120e912eb51e347f36c71b60a1d13af74d30e83 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
Conflicts:
drivers/net/wireless/iwlwifi/iwl-core.h
net/mac80211/rate.c
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/xmit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index f5cbbcb9a4aa..47294f90bbe5 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c | |||
@@ -1610,7 +1610,7 @@ static int ath_tx_setup_buffer(struct ieee80211_hw *hw, struct ath_buf *bf, | |||
1610 | bf->bf_frmlen -= padsize; | 1610 | bf->bf_frmlen -= padsize; |
1611 | } | 1611 | } |
1612 | 1612 | ||
1613 | if (conf_is_ht(&hw->conf) && !is_pae(skb)) | 1613 | if (conf_is_ht(&hw->conf)) |
1614 | bf->bf_state.bf_type |= BUF_HT; | 1614 | bf->bf_state.bf_type |= BUF_HT; |
1615 | 1615 | ||
1616 | bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq); | 1616 | bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq); |
@@ -1696,7 +1696,7 @@ static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf, | |||
1696 | goto tx_done; | 1696 | goto tx_done; |
1697 | } | 1697 | } |
1698 | 1698 | ||
1699 | if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) { | 1699 | if ((tx_info->flags & IEEE80211_TX_CTL_AMPDU) && !is_pae(skb)) { |
1700 | /* | 1700 | /* |
1701 | * Try aggregation if it's a unicast data frame | 1701 | * Try aggregation if it's a unicast data frame |
1702 | * and the destination is HT capable. | 1702 | * and the destination is HT capable. |