summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-11-24 06:13:18 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2016-11-24 06:13:18 -0800
commitaff86d3b4f8abde05bef419a00de0ee2e9bb0d58 (patch)
tree1e11144caa9939d0495240f2682fd47cbfd7e142 /include
parent2fb4ab87aa1f5548fbd22bdfdf8c7b7c2013800d (diff)
parent3b64a0127c9ba7a97e88b4329e11067445a1e535 (diff)
Merge "cfg80211: validate beacon int as part of iface combinations"
Diffstat (limited to 'include')
-rw-r--r--include/net/cfg80211.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index ab25e888a7c8..cc1e8d6b3454 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -796,19 +796,15 @@ struct cfg80211_csa_settings {
* @iftype_num: array with the number of interfaces of each interface
* type. The index is the interface type as specified in &enum
* nl80211_iftype.
- * @beacon_int_gcd: a value specifying GCD of all beaconing interfaces,
- * the GCD of a single value is considered the value itself, so for
- * a single interface this should be set to that interface's beacon
- * interval
- * @beacon_int_different: a flag indicating whether or not all beacon
- * intervals (of beaconing interfaces) are different or not.
+ * @new_beacon_int: set this to the beacon interval of a new interface
+ * that's not operating yet, if such is to be checked as part of
+ * the verification
*/
struct iface_combination_params {
int num_different_channels;
u8 radar_detect;
int iftype_num[NUM_NL80211_IFTYPES];
- u32 beacon_int_gcd;
- bool beacon_int_different;
+ u32 new_beacon_int;
};
/**