| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/ |
| H A D | bcmwifi_rates.c | 164 wf_nsd2ndbps(uint mcs, uint nss, uint nsd, bool dcm) in wf_nsd2ndbps() argument 173 wlc_mcs_info[mcs].coding_q * wlc_mcs_info[mcs].constellation_bits; in wf_nsd2ndbps() 176 Ndbps = Ndbps / wlc_mcs_info[mcs].coding_d; in wf_nsd2ndbps() 180 if (wlc_mcs_info[mcs].dcm_capable) { in wf_nsd2ndbps() 196 wf_he_mcs_to_Ndbps(uint mcs, uint nss, uint bw, bool dcm) in wf_he_mcs_to_Ndbps() argument 205 Ndbps = wf_nsd2ndbps(mcs, nss, Nsd, dcm); in wf_he_mcs_to_Ndbps() 212 wlc_mcs_info[mcs].coding_q * wlc_mcs_info[mcs].constellation_bits; in wf_he_mcs_to_Ndbps() 215 Ndbps = Ndbps / wlc_mcs_info[mcs].coding_d; in wf_he_mcs_to_Ndbps() 219 if (wlc_mcs_info[mcs].dcm_capable) { in wf_he_mcs_to_Ndbps() 229 wf_he_mcs_ru_to_ndbps(uint8 mcs, uint8 nss, bool dcm, uint8 ru_index) in wf_he_mcs_ru_to_ndbps() argument [all …]
|
| H A D | bcmwifi_rspec.c | 39 uint mcs = (rspec & WL_RSPEC_HE_MCS_MASK); in wf_he_rspec_to_rate() local 45 ASSERT(mcs <= max_mcs); in wf_he_rspec_to_rate() 48 if (mcs > max_mcs) { in wf_he_rspec_to_rate() 53 return wf_he_mcs_to_rate(mcs, nss, bw, gi, dcm); in wf_he_rspec_to_rate() 67 uint mcs = (rspec & WL_RSPEC_HT_MCS_MASK); in _wf_rspec_to_rate() local 69 ASSERT_FP(mcs <= 32 || IS_PROPRIETARY_11N_MCS(mcs)); in _wf_rspec_to_rate() 71 if (mcs == 32) { in _wf_rspec_to_rate() 72 rate = wf_mcs_to_rate(mcs, 1, WL_RSPEC_BW_40MHZ, RSPEC_ISSGI(rspec)); in _wf_rspec_to_rate() 75 uint nss = GET_11N_MCS_NSS(mcs); in _wf_rspec_to_rate() 76 mcs = wf_get_single_stream_mcs(mcs); in _wf_rspec_to_rate() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath11k/ |
| H A D | debugfs_sta.c | 21 int gi, mcs, bw, nss; in ath11k_debugfs_sta_add_tx_stats() local 28 mcs = txrate->mcs; in ath11k_debugfs_sta_add_tx_stats() 35 STATS_OP_FMT(SUCC).he[0][mcs] += peer_stats->succ_bytes; in ath11k_debugfs_sta_add_tx_stats() 36 STATS_OP_FMT(SUCC).he[1][mcs] += peer_stats->succ_pkts; in ath11k_debugfs_sta_add_tx_stats() 37 STATS_OP_FMT(FAIL).he[0][mcs] += peer_stats->failed_bytes; in ath11k_debugfs_sta_add_tx_stats() 38 STATS_OP_FMT(FAIL).he[1][mcs] += peer_stats->failed_pkts; in ath11k_debugfs_sta_add_tx_stats() 39 STATS_OP_FMT(RETRY).he[0][mcs] += peer_stats->retry_bytes; in ath11k_debugfs_sta_add_tx_stats() 40 STATS_OP_FMT(RETRY).he[1][mcs] += peer_stats->retry_pkts; in ath11k_debugfs_sta_add_tx_stats() 42 STATS_OP_FMT(SUCC).vht[0][mcs] += peer_stats->succ_bytes; in ath11k_debugfs_sta_add_tx_stats() 43 STATS_OP_FMT(SUCC).vht[1][mcs] += peer_stats->succ_pkts; in ath11k_debugfs_sta_add_tx_stats() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/ |
| H A D | bcmwifi_rates.h | 1226 #define GET_PROPRIETARY_11N_MCS_NSS(mcs) (1 + ((mcs) - 85) / 8) argument 1228 #define GET_11N_MCS_NSS(mcs) ((mcs) < 32 ? (1 + ((mcs) / 8)) : \ argument 1229 ((mcs) == 32 ? 1 : GET_PROPRIETARY_11N_MCS_NSS(mcs))) 1232 #define IS_PROPRIETARY_11N_MCS(mcs) \ argument 1233 ((mcs) == 87 || (mcs) == 88 || (mcs) == 99 || (mcs) == 100 || (mcs) == 101 || (mcs) == 102) 1234 #define IS_PROPRIETARY_11N_SS_MCS(mcs) \ argument 1235 ((mcs) == 87 || (mcs) == 88) 1237 #define IS_PROPRIETARY_11N_MCS(mcs) FALSE argument 1238 #define IS_PROPRIETARY_11N_SS_MCS(mcs) FALSE /**< is proprietary HT single stream MCS */ argument 1243 uint8 wf_get_single_stream_mcs(uint mcs); [all …]
|
| H A D | bcmwifi_rspec.h | 228 #define HT_RSPEC(mcs) (WL_RSPEC_ENCODE_HT | ((mcs) & WL_RSPEC_HT_MCS_MASK)) argument 229 #define VHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_VHT | \ argument 231 ((mcs) & WL_RSPEC_VHT_MCS_MASK)) 232 #define HE_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_HE | \ argument 234 ((mcs) & WL_RSPEC_HE_MCS_MASK)) 235 #define EHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_EHT | \ argument 237 ((mcs) & WL_RSPEC_EHT_MCS_MASK))
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/ |
| H A D | bcmwifi_rates.h | 1226 #define GET_PROPRIETARY_11N_MCS_NSS(mcs) (1 + ((mcs) - 85) / 8) argument 1228 #define GET_11N_MCS_NSS(mcs) ((mcs) < 32 ? (1 + ((mcs) / 8)) : \ argument 1229 ((mcs) == 32 ? 1 : GET_PROPRIETARY_11N_MCS_NSS(mcs))) 1232 #define IS_PROPRIETARY_11N_MCS(mcs) \ argument 1233 ((mcs) == 87 || (mcs) == 88 || (mcs) == 99 || (mcs) == 100 || (mcs) == 101 || (mcs) == 102) 1234 #define IS_PROPRIETARY_11N_SS_MCS(mcs) \ argument 1235 ((mcs) == 87 || (mcs) == 88) 1237 #define IS_PROPRIETARY_11N_MCS(mcs) FALSE argument 1238 #define IS_PROPRIETARY_11N_SS_MCS(mcs) FALSE /**< is proprietary HT single stream MCS */ argument 1243 uint8 wf_get_single_stream_mcs(uint mcs); [all …]
|
| H A D | bcmwifi_rspec.h | 228 #define HT_RSPEC(mcs) (WL_RSPEC_ENCODE_HT | ((mcs) & WL_RSPEC_HT_MCS_MASK)) argument 229 #define VHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_VHT | \ argument 231 ((mcs) & WL_RSPEC_VHT_MCS_MASK)) 232 #define HE_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_HE | \ argument 234 ((mcs) & WL_RSPEC_HE_MCS_MASK)) 235 #define EHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_EHT | \ argument 237 ((mcs) & WL_RSPEC_EHT_MCS_MASK))
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
| H A D | rate.h | 56 static inline u8 mcs_2_txstreams(u8 mcs) in mcs_2_txstreams() argument 58 return (mcs_table[mcs].tx_phy_ctl3 & MCS_TXS_MASK) >> MCS_TXS_SHIFT; in mcs_2_txstreams() 61 static inline uint mcs_2_rate(u8 mcs, bool is40, bool sgi) in mcs_2_rate() argument 65 return mcs_table[mcs].phy_rate_40_sgi; in mcs_2_rate() 66 return mcs_table[mcs].phy_rate_20_sgi; in mcs_2_rate() 69 return mcs_table[mcs].phy_rate_40; in mcs_2_rate() 71 return mcs_table[mcs].phy_rate_20; in mcs_2_rate() 190 static inline bool is_single_stream(u8 mcs) in is_single_stream() argument 192 return mcs <= HIGHEST_SINGLE_STREAM_MCS || mcs == 32; in is_single_stream()
|
| H A D | rate.c | 294 rs->mcs[i] = 0; in brcms_c_rateset_mcs_upd() 334 rs->mcs[i] = (rs->mcs[i] & hw_rs->mcs[i]); in brcms_c_rate_hwrs_filter_sort_validate() 432 memcpy(&dst->mcs[0], &src->mcs[0], MCSSET_LEN); in brcms_c_rateset_filter() 498 rateset->mcs[i] = 0; in brcms_c_rateset_mcs_clear() 503 memcpy(&rateset->mcs[0], &cck_ofdm_mimo_rates.mcs[0], MCSSET_LEN); in brcms_c_rateset_mcs_build() 511 setbit(rateset->mcs, 32); in brcms_c_rateset_bw_mcs_filter() 513 clrbit(rateset->mcs, 32); in brcms_c_rateset_bw_mcs_filter()
|
| H A D | ampdu.c | 154 u32 rate, mcs; in brcms_c_scb_ampdu_update_max_txlen() local 156 for (mcs = 0; mcs < MCS_TABLE_SIZE; mcs++) { in brcms_c_scb_ampdu_update_max_txlen() 159 rate = mcs_2_rate(mcs, false, false); in brcms_c_scb_ampdu_update_max_txlen() 160 ampdu->max_txlen[mcs][0][0] = (rate * dur) >> 3; in brcms_c_scb_ampdu_update_max_txlen() 162 rate = mcs_2_rate(mcs, true, false); in brcms_c_scb_ampdu_update_max_txlen() 163 ampdu->max_txlen[mcs][1][0] = (rate * dur) >> 3; in brcms_c_scb_ampdu_update_max_txlen() 165 rate = mcs_2_rate(mcs, false, true); in brcms_c_scb_ampdu_update_max_txlen() 166 ampdu->max_txlen[mcs][0][1] = (rate * dur) >> 3; in brcms_c_scb_ampdu_update_max_txlen() 168 rate = mcs_2_rate(mcs, true, true); in brcms_c_scb_ampdu_update_max_txlen() 169 ampdu->max_txlen[mcs][1][1] = (rate * dur) >> 3; in brcms_c_scb_ampdu_update_max_txlen() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/hal_g6/phy/bb/ |
| H A D | halbb_plcp_gen.c | 241 if (in->mcs >= 8) { in halbb_legacy_mcs_table() 249 out->code_rate = code_rate_table[in->mcs]; in halbb_legacy_mcs_table() 250 out->n_cbps = n_cbps_table[in->mcs]; in halbb_legacy_mcs_table() 251 out->n_dbps = n_dbps_table[in->mcs]; in halbb_legacy_mcs_table() 263 u8 nss, mcs; in halbb_ht_mcs_table() local 269 out->valid = ((in->bw < 2) && (in->mcs <= 32)); in halbb_ht_mcs_table() 270 …if ((in->mcs == 32) && (in->bw == 1)) {//?????????????????????????????????????????????????????????… in halbb_ht_mcs_table() 280 nss = (in->mcs >> 3) + 1; in halbb_ht_mcs_table() 281 mcs = in->mcs - ((nss - 1) << 3); in halbb_ht_mcs_table() 282 out->code_rate = code_rate_table[mcs]; in halbb_ht_mcs_table() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/phy/bb/ |
| H A D | halbb_plcp_gen.c | 241 if (in->mcs >= 8) { in halbb_legacy_mcs_table() 249 out->code_rate = code_rate_table[in->mcs]; in halbb_legacy_mcs_table() 250 out->n_cbps = n_cbps_table[in->mcs]; in halbb_legacy_mcs_table() 251 out->n_dbps = n_dbps_table[in->mcs]; in halbb_legacy_mcs_table() 263 u8 nss, mcs; in halbb_ht_mcs_table() local 269 out->valid = ((in->bw < 2) && (in->mcs <= 32)); in halbb_ht_mcs_table() 270 …if ((in->mcs == 32) && (in->bw == 1)) {//?????????????????????????????????????????????????????????… in halbb_ht_mcs_table() 280 nss = (in->mcs >> 3) + 1; in halbb_ht_mcs_table() 281 mcs = in->mcs - ((nss - 1) << 3); in halbb_ht_mcs_table() 282 out->code_rate = code_rate_table[mcs]; in halbb_ht_mcs_table() [all …]
|
| /OK3568_Linux_fs/kernel/sound/soc/codecs/ |
| H A D | adau1977.c | 267 unsigned int mcs; in adau1977_lookup_mcs() local 280 mcs = adau1977->sysclk / rate; in adau1977_lookup_mcs() 283 if (mcs < 1 || mcs > 6 || mcs == 5) in adau1977_lookup_mcs() 286 mcs = mcs - 1; in adau1977_lookup_mcs() 287 if (mcs == 5) in adau1977_lookup_mcs() 288 mcs = 4; in adau1977_lookup_mcs() 290 return mcs; in adau1977_lookup_mcs() 302 int mcs, fs; in adau1977_hw_params() local 310 mcs = adau1977_lookup_mcs(adau1977, rate, fs); in adau1977_hw_params() 311 if (mcs < 0) in adau1977_hw_params() [all …]
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | ht.c | 69 scaps = (u8 *)(&ht_capa->mcs.rx_mask); in ieee80211_apply_htcap_overrides() 70 smask = (u8 *)(&ht_capa_mask->mcs.rx_mask); in ieee80211_apply_htcap_overrides() 81 ht_cap->mcs.rx_mask[i] &= ~m; /* turn off all masked bits */ in ieee80211_apply_htcap_overrides() 83 ht_cap->mcs.rx_mask[i] |= (m & scaps[i]); in ieee80211_apply_htcap_overrides() 198 tx_mcs_set_cap = own_cap.mcs.tx_params; in ieee80211_ht_cap_ie_to_sta_ht_cap() 201 ht_cap.mcs.tx_params = ht_cap_ie->mcs.tx_params; in ieee80211_ht_cap_ie_to_sta_ht_cap() 223 ht_cap.mcs.rx_mask[i] = in ieee80211_ht_cap_ie_to_sta_ht_cap() 224 own_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i]; in ieee80211_ht_cap_ie_to_sta_ht_cap() 229 ht_cap.mcs.rx_mask[i] = in ieee80211_ht_cap_ie_to_sta_ht_cap() 230 own_cap.mcs.rx_mask[i] & in ieee80211_ht_cap_ie_to_sta_ht_cap() [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/xen/ |
| H A D | mmu_pv.c | 174 struct multicall_space mcs; in xen_extend_mmu_update() local 177 mcs = xen_mc_extend_args(__HYPERVISOR_mmu_update, sizeof(*u)); in xen_extend_mmu_update() 179 if (mcs.mc != NULL) { in xen_extend_mmu_update() 180 mcs.mc->args[1]++; in xen_extend_mmu_update() 182 mcs = __xen_mc_entry(sizeof(*u)); in xen_extend_mmu_update() 183 MULTI_mmu_update(mcs.mc, mcs.args, 1, NULL, DOMID_SELF); in xen_extend_mmu_update() 186 u = mcs.args; in xen_extend_mmu_update() 192 struct multicall_space mcs; in xen_extend_mmuext_op() local 195 mcs = xen_mc_extend_args(__HYPERVISOR_mmuext_op, sizeof(*u)); in xen_extend_mmuext_op() 197 if (mcs.mc != NULL) { in xen_extend_mmuext_op() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/ |
| H A D | bcmwifi_rates.h | 788 #define GET_PROPRIETARY_11N_MCS_NSS(mcs) (1 + ((mcs) - 85) / 8) argument 790 #define GET_11N_MCS_NSS(mcs) ((mcs) < 32 ? (1 + ((mcs) / 8)) : \ argument 791 ((mcs) == 32 ? 1 : GET_PROPRIETARY_11N_MCS_NSS(mcs))) 793 #define IS_PROPRIETARY_11N_MCS(mcs) FALSE argument 794 #define IS_PROPRIETARY_11N_SS_MCS(mcs) FALSE /**< is proprietary HT single stream MCS */ argument 823 uint8 wf_get_single_stream_mcs(uint mcs); 826 uint wf_mcs_to_rate(uint mcs, uint nss, uint bw, int sgi); 827 uint wf_he_mcs_to_rate(uint mcs, uint nss, uint bw, uint gi, bool dcm); 828 uint wf_mcs_to_Ndbps(uint mcs, uint nss, uint bw);
|
| H A D | bcmwifi_rspec.h | 170 #define HT_RSPEC(mcs) (WL_RSPEC_ENCODE_HT | ((mcs) & WL_RSPEC_HT_MCS_MASK)) argument 171 #define VHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_VHT | \ argument 173 ((mcs) & WL_RSPEC_VHT_MCS_MASK)) 174 #define HE_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_HE | \ argument 176 ((mcs) & WL_RSPEC_HE_MCS_MASK))
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/ |
| H A D | bcmwifi_rates.h | 788 #define GET_PROPRIETARY_11N_MCS_NSS(mcs) (1 + ((mcs) - 85) / 8) argument 790 #define GET_11N_MCS_NSS(mcs) ((mcs) < 32 ? (1 + ((mcs) / 8)) : \ argument 791 ((mcs) == 32 ? 1 : GET_PROPRIETARY_11N_MCS_NSS(mcs))) 793 #define IS_PROPRIETARY_11N_MCS(mcs) FALSE argument 794 #define IS_PROPRIETARY_11N_SS_MCS(mcs) FALSE /**< is proprietary HT single stream MCS */ argument 823 uint8 wf_get_single_stream_mcs(uint mcs); 826 uint wf_mcs_to_rate(uint mcs, uint nss, uint bw, int sgi); 827 uint wf_he_mcs_to_rate(uint mcs, uint nss, uint bw, uint gi, bool dcm); 828 uint wf_mcs_to_Ndbps(uint mcs, uint nss, uint bw);
|
| H A D | bcmwifi_rspec.h | 170 #define HT_RSPEC(mcs) (WL_RSPEC_ENCODE_HT | ((mcs) & WL_RSPEC_HT_MCS_MASK)) argument 171 #define VHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_VHT | \ argument 173 ((mcs) & WL_RSPEC_VHT_MCS_MASK)) 174 #define HE_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_HE | \ argument 176 ((mcs) & WL_RSPEC_HE_MCS_MASK))
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/infineon/ |
| H A D | bcmwifi_rates.h | 788 #define GET_PROPRIETARY_11N_MCS_NSS(mcs) (1 + ((mcs) - 85) / 8) argument 790 #define GET_11N_MCS_NSS(mcs) ((mcs) < 32 ? (1 + ((mcs) / 8)) : \ argument 791 ((mcs) == 32 ? 1 : GET_PROPRIETARY_11N_MCS_NSS(mcs))) 793 #define IS_PROPRIETARY_11N_MCS(mcs) FALSE argument 794 #define IS_PROPRIETARY_11N_SS_MCS(mcs) FALSE /**< is proprietary HT single stream MCS */ argument 823 uint8 wf_get_single_stream_mcs(uint mcs); 826 uint wf_mcs_to_rate(uint mcs, uint nss, uint bw, int sgi); 827 uint wf_he_mcs_to_rate(uint mcs, uint nss, uint bw, uint gi, bool dcm); 828 uint wf_mcs_to_Ndbps(uint mcs, uint nss, uint bw);
|
| H A D | bcmwifi_rspec.h | 170 #define HT_RSPEC(mcs) (WL_RSPEC_ENCODE_HT | ((mcs) & WL_RSPEC_HT_MCS_MASK)) argument 171 #define VHT_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_VHT | \ argument 173 ((mcs) & WL_RSPEC_VHT_MCS_MASK)) 174 #define HE_RSPEC(mcs, nss) (WL_RSPEC_ENCODE_HE | \ argument 176 ((mcs) & WL_RSPEC_HE_MCS_MASK))
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/realtek/rtw88/ |
| H A D | util.c | 82 void rtw_desc_to_mcsrate(u16 rate, u8 *mcs, u8 *nss) in rtw_desc_to_mcsrate() argument 90 *mcs = rate - DESC_RATEVHT1SS_MCS0; in rtw_desc_to_mcsrate() 94 *mcs = rate - DESC_RATEVHT2SS_MCS0; in rtw_desc_to_mcsrate() 98 *mcs = rate - DESC_RATEVHT3SS_MCS0; in rtw_desc_to_mcsrate() 102 *mcs = rate - DESC_RATEVHT4SS_MCS0; in rtw_desc_to_mcsrate() 105 *mcs = rate - DESC_RATEMCS0; in rtw_desc_to_mcsrate()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/marvell/mwifiex/ |
| H A D | 11ac.c | 58 u8 i, nss, mcs; in mwifiex_convert_mcsmap_to_maxrate() local 71 mcs = GET_VHTNSSMCS(mcs_map, i); in mwifiex_convert_mcsmap_to_maxrate() 72 if (mcs < IEEE80211_VHT_MCS_NOT_SUPPORTED) in mwifiex_convert_mcsmap_to_maxrate() 75 mcs = GET_VHTNSSMCS(mcs_map, nss); in mwifiex_convert_mcsmap_to_maxrate() 78 if (mcs == IEEE80211_VHT_MCS_NOT_SUPPORTED) in mwifiex_convert_mcsmap_to_maxrate() 79 mcs = IEEE80211_VHT_MCS_SUPPORT_0_9; in mwifiex_convert_mcsmap_to_maxrate() 83 max_rate = max_rate_lgi_160MHZ[nss - 1][mcs]; in mwifiex_convert_mcsmap_to_maxrate() 86 max_rate = max_rate_lgi_160MHZ[nss - 1][mcs - 1]; in mwifiex_convert_mcsmap_to_maxrate() 88 max_rate = max_rate_lgi_80MHZ[nss - 1][mcs]; in mwifiex_convert_mcsmap_to_maxrate() 91 max_rate = max_rate_lgi_80MHZ[nss - 1][mcs - 1]; in mwifiex_convert_mcsmap_to_maxrate()
|
| /OK3568_Linux_fs/buildroot/package/mono/ |
| H A D | mono.mk | 11 MONO_LICENSE_FILES = LICENSE mcs/COPYING \ 21 MONO_COMMON_CONF_OPTS = --with-mcs-docs=no \ 29 MONO_CONF_OPTS = $(MONO_COMMON_CONF_OPTS) --disable-mcs-build 59 rm -rf $(@D)/mcs/class/lib/monolite 60 (cd $(@D)/mcs/class/lib; ln -s $(HOST_DIR)/lib/monolite monolite)
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/wil6210/ |
| H A D | trace.h | 161 __field(u8, mcs) 172 __entry->mcs = wil_rxdesc_mcs(d); 176 __entry->mid, __entry->cid, __entry->tid, __entry->mcs, 193 __field(u8, mcs) 205 __entry->mcs = wil_rx_status_get_mcs(msg); 210 __entry->mid, __entry->cid, __entry->tid, __entry->mcs, 262 __field(u8, mcs) 270 __entry->mcs = wil_tx_status_get_mcs(msg); 275 __entry->num_descs, __entry->status, __entry->mcs)
|