Lines Matching defs:conf
2459 * @conf: &struct ieee80211_conf, device configuration, don't use.
2573 struct ieee80211_conf conf;
3387 * interface is given in the conf parameter.
3403 * the mac_addr member of the conf structure is, however, set to the
3925 struct ieee80211_key_conf *conf,
4162 struct cfg80211_nan_conf *conf);
4167 struct cfg80211_nan_conf *conf, u32 changes);
6222 conf_is_ht20(struct ieee80211_conf *conf)
6224 return conf->chandef.width == NL80211_CHAN_WIDTH_20;
6228 conf_is_ht40_minus(struct ieee80211_conf *conf)
6230 return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
6231 conf->chandef.center_freq1 < conf->chandef.chan->center_freq;
6235 conf_is_ht40_plus(struct ieee80211_conf *conf)
6237 return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
6238 conf->chandef.center_freq1 > conf->chandef.chan->center_freq;
6242 conf_is_ht40(struct ieee80211_conf *conf)
6244 return conf->chandef.width == NL80211_CHAN_WIDTH_40;
6248 conf_is_ht(struct ieee80211_conf *conf)
6250 return (conf->chandef.width != NL80211_CHAN_WIDTH_5) &&
6251 (conf->chandef.width != NL80211_CHAN_WIDTH_10) &&
6252 (conf->chandef.width != NL80211_CHAN_WIDTH_20_NOHT);