mac80211: add some small fixes for minstrel_ht CCK support

SVN-Revision: 35576
This commit is contained in:
Felix Fietkau 2013-02-13 09:53:28 +00:00
parent 4663d424a3
commit 31718416e6

View file

@ -2722,7 +2722,7 @@
+ CCK_ACK_DURATION(110, _short)
+
+#define CCK_GROUP \
+ { \
+ [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
+ .streams = 0, \
+ .duration = { \
+ CCK_DURATION_LIST(false), \
@ -2763,7 +2763,7 @@
+ } else {
+ group = MINSTREL_CCK_GROUP;
+
+ for (idx = 0; idx <= ARRAY_SIZE(mp->cck_rates); idx++)
+ for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
+ if (rate->idx == mp->cck_rates[idx])
+ break;
+
@ -2822,7 +2822,7 @@
return false;
- return !!(rate->flags & IEEE80211_TX_RC_MCS);
+ if (rate->flags & IEEE80211_TX_RC_MCS);
+ if (rate->flags & IEEE80211_TX_RC_MCS)
+ return true;
+
+ return rate->idx == mp->cck_rates[0] ||