aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx
diff options
context:
space:
mode:
authorEliad Peller <eliad@wizery.com>2011-11-01 03:23:52 -0400
committerLuciano Coelho <coelho@ti.com>2011-11-08 08:50:09 -0500
commit8a0f2ee37810aa4a4f46baf08b2ad587e138eb58 (patch)
tree6c7dfe67b0a829b3ace874d78d0761235d6aa651 /drivers/net/wireless/wl12xx
parentbfafba8a4c61841ab850887d6dfe2741ad037ab6 (diff)
wl12xx: use p2p rate index when the skb has the NO_CCK flag
If the skb contains the NO_CCK flag, use the p2p rate index (which contains only the OFDM rates) Signed-off-by: Eliad Peller <eliad@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r--drivers/net/wireless/wl12xx/tx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
index a07ee8201d6d..fa518a5b7c8b 100644
--- a/drivers/net/wireless/wl12xx/tx.c
+++ b/drivers/net/wireless/wl12xx/tx.c
@@ -336,7 +336,9 @@ static void wl1271_tx_fill_hdr(struct wl1271 *wl, struct wl12xx_vif *wlvif,
336 /* if the packets are destined for AP (have a STA entry) 336 /* if the packets are destined for AP (have a STA entry)
337 send them with AP rate policies, otherwise use default 337 send them with AP rate policies, otherwise use default
338 basic rates */ 338 basic rates */
339 if (control->control.sta) 339 if (control->flags & IEEE80211_TX_CTL_NO_CCK_RATE)
340 rate_idx = wlvif->sta.p2p_rate_idx;
341 else if (control->control.sta)
340 rate_idx = wlvif->sta.ap_rate_idx; 342 rate_idx = wlvif->sta.ap_rate_idx;
341 else 343 else
342 rate_idx = wlvif->sta.basic_rate_idx; 344 rate_idx = wlvif->sta.basic_rate_idx;