aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index e0949c8bc2d1..ed37304fa09d 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -712,7 +712,7 @@ struct cfg80211_bitrate_mask {
712 * MAC address based access control 712 * MAC address based access control
713 * @pbss: If set, start as a PCP instead of AP. Relevant for DMG 713 * @pbss: If set, start as a PCP instead of AP. Relevant for DMG
714 * networks. 714 * networks.
715 * @beacon_rate: masks for setting user configured beacon tx rate. 715 * @beacon_rate: bitrate to be used for beacons
716 */ 716 */
717struct cfg80211_ap_settings { 717struct cfg80211_ap_settings {
718 struct cfg80211_chan_def chandef; 718 struct cfg80211_chan_def chandef;
@@ -1365,6 +1365,7 @@ struct mesh_config {
1365 * @beacon_interval: beacon interval to use 1365 * @beacon_interval: beacon interval to use
1366 * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a] 1366 * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
1367 * @basic_rates: basic rates to use when creating the mesh 1367 * @basic_rates: basic rates to use when creating the mesh
1368 * @beacon_rate: bitrate to be used for beacons
1368 * 1369 *
1369 * These parameters are fixed when the mesh is created. 1370 * These parameters are fixed when the mesh is created.
1370 */ 1371 */
@@ -1385,6 +1386,7 @@ struct mesh_setup {
1385 u16 beacon_interval; 1386 u16 beacon_interval;
1386 int mcast_rate[NUM_NL80211_BANDS]; 1387 int mcast_rate[NUM_NL80211_BANDS];
1387 u32 basic_rates; 1388 u32 basic_rates;
1389 struct cfg80211_bitrate_mask beacon_rate;
1388}; 1390};
1389 1391
1390/** 1392/**