Lines Matching defs:mcs
1141 static int ath_max_framelen(int usec, int mcs, bool ht40, bool sgi)
1143 int streams = HT_RC_2_STREAMS(mcs);
1149 bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams;
1161 int mcs;
1171 for (mcs = 0; mcs < 32; mcs++) {
1172 cur_ht20[mcs] = ath_max_framelen(txop, mcs, false, false);
1173 cur_ht20_sgi[mcs] = ath_max_framelen(txop, mcs, false, true);
1174 cur_ht40[mcs] = ath_max_framelen(txop, mcs, true, false);
1175 cur_ht40_sgi[mcs] = ath_max_framelen(txop, mcs, true, true);