Lines Matching defs:mcs
1092 static int ath_max_framelen(int usec, int mcs, bool ht40, bool sgi)
1094 int streams = HT_RC_2_STREAMS(mcs);
1100 bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams;
1112 int mcs;
1122 for (mcs = 0; mcs < 32; mcs++) {
1123 cur_ht20[mcs] = ath_max_framelen(txop, mcs, false, false);
1124 cur_ht20_sgi[mcs] = ath_max_framelen(txop, mcs, false, true);
1125 cur_ht40[mcs] = ath_max_framelen(txop, mcs, true, false);
1126 cur_ht40_sgi[mcs] = ath_max_framelen(txop, mcs, true, true);