Lines Matching refs:IEEE80211_VHT_MCS_NOT_SUPPORTED
90 m = (rxmcs_mask >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
91 n = (rxmcs_n >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
92 c = (rxmcs_cap >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
94 if (m && ((c != IEEE80211_VHT_MCS_NOT_SUPPORTED && n < c) || in ieee80211_apply_vhtcap_overrides()
95 n == IEEE80211_VHT_MCS_NOT_SUPPORTED)) { in ieee80211_apply_vhtcap_overrides()
100 m = (txmcs_mask >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
101 n = (txmcs_n >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
102 c = (txmcs_cap >> 2*i) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_apply_vhtcap_overrides()
104 if (m && ((c != IEEE80211_VHT_MCS_NOT_SUPPORTED && n < c) || in ieee80211_apply_vhtcap_overrides()
105 n == IEEE80211_VHT_MCS_NOT_SUPPORTED)) { in ieee80211_apply_vhtcap_overrides()
221 own_rx = (own_rx >> i * 2) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
224 own_tx = (own_tx >> i * 2) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
227 peer_rx = (peer_rx >> i * 2) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
230 peer_tx = (peer_tx >> i * 2) & IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
232 if (peer_tx != IEEE80211_VHT_MCS_NOT_SUPPORTED) { in ieee80211_vht_cap_ie_to_sta_vht_cap()
233 if (own_rx == IEEE80211_VHT_MCS_NOT_SUPPORTED) in ieee80211_vht_cap_ie_to_sta_vht_cap()
234 peer_tx = IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
239 if (peer_rx != IEEE80211_VHT_MCS_NOT_SUPPORTED) { in ieee80211_vht_cap_ie_to_sta_vht_cap()
240 if (own_tx == IEEE80211_VHT_MCS_NOT_SUPPORTED) in ieee80211_vht_cap_ie_to_sta_vht_cap()
241 peer_rx = IEEE80211_VHT_MCS_NOT_SUPPORTED; in ieee80211_vht_cap_ie_to_sta_vht_cap()
247 ~cpu_to_le16(IEEE80211_VHT_MCS_NOT_SUPPORTED << i * 2); in ieee80211_vht_cap_ie_to_sta_vht_cap()
251 ~cpu_to_le16(IEEE80211_VHT_MCS_NOT_SUPPORTED << i * 2); in ieee80211_vht_cap_ie_to_sta_vht_cap()
348 if (mcs != IEEE80211_VHT_MCS_NOT_SUPPORTED) { in ieee80211_sta_set_rx_nss()