* Update LDPC state according to received htcap * and local settings. */
| 1881 | * and local settings. |
| 1882 | */ |
| 1883 | static __inline void |
| 1884 | htcap_update_ldpc(struct ieee80211_node *ni) |
| 1885 | { |
| 1886 | struct ieee80211vap *vap = ni->ni_vap; |
| 1887 | |
| 1888 | if ((ni->ni_htcap & IEEE80211_HTCAP_LDPC) && |
| 1889 | (vap->iv_flags_ht & IEEE80211_FHT_LDPC_TX)) |
| 1890 | ni->ni_flags |= IEEE80211_NODE_LDPC; |
| 1891 | } |
| 1892 | |
| 1893 | /* |
| 1894 | * Parse and update HT-related state extracted from |
no outgoing calls
no test coverage detected