mac80211: add some small fixes for minstrel_ht CCK support
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 13 Feb 2013 09:53:28 +0000 (09:53 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 13 Feb 2013 09:53:28 +0000 (09:53 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35576 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/mac80211/patches/300-pending_work.patch

index a0ddf42..3cba6e4 100644 (file)
 +      CCK_ACK_DURATION(55, _short),                   \
 +      CCK_ACK_DURATION(110, _short)
 +
-+#define CCK_GROUP                                     \
-+      {                                               \
-+              .streams = 0,                           \
-+              .duration = {                           \
-+                      CCK_DURATION_LIST(false),       \
-+                      CCK_DURATION_LIST(true)         \
-+              }                                       \
++#define CCK_GROUP                                             \
++      [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = {     \
++              .streams = 0,                                   \
++              .duration = {                                   \
++                      CCK_DURATION_LIST(false),               \
++                      CCK_DURATION_LIST(true)                 \
++              }                                               \
 +      }
 +
  /*
 +      } 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;
 +
                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] ||