Lines Matching refs:conf
2046 struct ieee80211_conf conf; member
3307 struct ieee80211_key_conf *conf,
5263 conf_is_ht20(struct ieee80211_conf *conf) in conf_is_ht20() argument
5265 return conf->chandef.width == NL80211_CHAN_WIDTH_20; in conf_is_ht20()
5269 conf_is_ht40_minus(struct ieee80211_conf *conf) in conf_is_ht40_minus() argument
5271 return conf->chandef.width == NL80211_CHAN_WIDTH_40 && in conf_is_ht40_minus()
5272 conf->chandef.center_freq1 < conf->chandef.chan->center_freq; in conf_is_ht40_minus()
5276 conf_is_ht40_plus(struct ieee80211_conf *conf) in conf_is_ht40_plus() argument
5278 return conf->chandef.width == NL80211_CHAN_WIDTH_40 && in conf_is_ht40_plus()
5279 conf->chandef.center_freq1 > conf->chandef.chan->center_freq; in conf_is_ht40_plus()
5283 conf_is_ht40(struct ieee80211_conf *conf) in conf_is_ht40() argument
5285 return conf->chandef.width == NL80211_CHAN_WIDTH_40; in conf_is_ht40()
5289 conf_is_ht(struct ieee80211_conf *conf) in conf_is_ht() argument
5291 return (conf->chandef.width != NL80211_CHAN_WIDTH_5) && in conf_is_ht()
5292 (conf->chandef.width != NL80211_CHAN_WIDTH_10) && in conf_is_ht()
5293 (conf->chandef.width != NL80211_CHAN_WIDTH_20_NOHT); in conf_is_ht()