Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224276
b: refs/heads/master
c: c0bf9ca
h: refs/heads/master
v: v3
  • Loading branch information
Nishant Sarmukadam authored and John W. Linville committed Nov 15, 2010
1 parent cd74f61 commit f44f4b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3eedb6f436858f3e864139dc184adc9a51440c92
refs/heads/master: c0bf9ca98e07ca72c444a6cfb272aafa9890b9b6
7 changes: 6 additions & 1 deletion trunk/drivers/net/wireless/mwl8k.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,10 +1125,12 @@ struct mwl8k_tx_desc {
__le32 reserved;
__le16 rate_info;
__u8 peer_id;
__u8 tx_frag_cnt;
__u8 xmitcontrol;
} __packed;

#define MWL8K_TX_DESCS 128
#define MWL8K_XMITCONTROL_NON_AMPDU 0x04


static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
{
Expand Down Expand Up @@ -1448,6 +1450,9 @@ mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id;
else
tx->peer_id = 0;

if (priv->ap_fw)
tx->xmitcontrol = MWL8K_XMITCONTROL_NON_AMPDU;
wmb();
tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);

Expand Down

0 comments on commit f44f4b2

Please sign in to comment.