Lines Matching refs:conf
1965 struct ieee80211_conf conf; member
3198 struct ieee80211_key_conf *conf,
5188 conf_is_ht20(struct ieee80211_conf *conf) in conf_is_ht20() argument
5190 return conf->chandef.width == NL80211_CHAN_WIDTH_20; in conf_is_ht20()
5194 conf_is_ht40_minus(struct ieee80211_conf *conf) in conf_is_ht40_minus() argument
5196 return conf->chandef.width == NL80211_CHAN_WIDTH_40 && in conf_is_ht40_minus()
5197 conf->chandef.center_freq1 < conf->chandef.chan->center_freq; in conf_is_ht40_minus()
5201 conf_is_ht40_plus(struct ieee80211_conf *conf) in conf_is_ht40_plus() argument
5203 return conf->chandef.width == NL80211_CHAN_WIDTH_40 && in conf_is_ht40_plus()
5204 conf->chandef.center_freq1 > conf->chandef.chan->center_freq; in conf_is_ht40_plus()
5208 conf_is_ht40(struct ieee80211_conf *conf) in conf_is_ht40() argument
5210 return conf->chandef.width == NL80211_CHAN_WIDTH_40; in conf_is_ht40()
5214 conf_is_ht(struct ieee80211_conf *conf) in conf_is_ht() argument
5216 return (conf->chandef.width != NL80211_CHAN_WIDTH_5) && in conf_is_ht()
5217 (conf->chandef.width != NL80211_CHAN_WIDTH_10) && in conf_is_ht()
5218 (conf->chandef.width != NL80211_CHAN_WIDTH_20_NOHT); in conf_is_ht()