On Tue, 2022-09-06 at 16:48 +1200, Kieran Frewen wrote: > If configured, use the S1G short beacon format. The S1G short beacon > format includes a limited set of information elements. > > Signed-off-by: Kieran Frewen <kieran.frewen@xxxxxxxxxxxxxx> > --- > include/net/cfg80211.h | 2 +- > include/net/mac80211.h | 1 + > net/mac80211/cfg.c | 1 + > net/mac80211/ieee80211_i.h | 1 + > net/mac80211/tx.c | 14 +++++++++++++- > 5 files changed, 17 insertions(+), 2 deletions(-) > > diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h > index 945e7700de66..b750b2ad246b 100644 > --- a/include/net/cfg80211.h > +++ b/include/net/cfg80211.h > @@ -1328,7 +1328,7 @@ struct cfg80211_ap_settings { > > struct cfg80211_beacon_data beacon; > > - int beacon_interval, dtim_period; > + int beacon_interval, dtim_period, short_beacon_period; > One way or the other, this doesn't belong into this patch - you should reorder so cfg80211 comes first and then mac80211 can use it, and then this change goes into the cfg80211 patch. johannes