Lines Matching defs:conf
282 * @link_conf: the link conf that's switching
2757 * @conf: &struct ieee80211_conf, device configuration, don't use.
2874 struct ieee80211_conf conf;
3703 * interface is given in the conf parameter.
3719 * the mac_addr member of the conf structure is, however, set to the
4326 struct ieee80211_key_conf *conf,
4579 struct cfg80211_nan_conf *conf);
4584 struct cfg80211_nan_conf *conf, u32 changes);
6847 conf_is_ht20(struct ieee80211_conf *conf)
6849 return conf->chandef.width == NL80211_CHAN_WIDTH_20;
6853 conf_is_ht40_minus(struct ieee80211_conf *conf)
6855 return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
6856 conf->chandef.center_freq1 < conf->chandef.chan->center_freq;
6860 conf_is_ht40_plus(struct ieee80211_conf *conf)
6862 return conf->chandef.width == NL80211_CHAN_WIDTH_40 &&
6863 conf->chandef.center_freq1 > conf->chandef.chan->center_freq;
6867 conf_is_ht40(struct ieee80211_conf *conf)
6869 return conf->chandef.width == NL80211_CHAN_WIDTH_40;
6873 conf_is_ht(struct ieee80211_conf *conf)
6875 return (conf->chandef.width != NL80211_CHAN_WIDTH_5) &&
6876 (conf->chandef.width != NL80211_CHAN_WIDTH_10) &&
6877 (conf->chandef.width != NL80211_CHAN_WIDTH_20_NOHT);