@@ -199,6 +199,12 @@ static int print_reg_handler(struct nl_msg *msg, void *arg)
PARSE_FLAG(NL80211_RRF_NO_OUTDOOR, "NO-OUTDOOR");
PARSE_FLAG(NL80211_RRF_DFS, "DFS");
PARSE_FLAG(NL80211_RRF_PTP_ONLY, "PTP-ONLY");
+ PARSE_FLAG(NL80211_RRF_AUTO_BW, "AUTO-BW");
+ PARSE_FLAG(NL80211_RRF_GO_CONCURRENT, "GO-CONCURRENT");
+ PARSE_FLAG(NL80211_RRF_NO_HT40MINUS, "NO-HT40MINUS");
+ PARSE_FLAG(NL80211_RRF_NO_HT40PLUS, "NO-HT40PLUS");
+ PARSE_FLAG(NL80211_RRF_NO_80MHZ, "NO-80MHZ");
+ PARSE_FLAG(NL80211_RRF_NO_160MHZ, "NO-160MHZ");
/* Kernels that support NO_IR always turn on both flags */
if ((flags & NL80211_RRF_NO_IR) && (flags & __NL80211_RRF_NO_IBSS)) {
These were added to cfg80211 recently Signed-off-by: Arik Nemtsov <arik@wizery.com> --- v2: remove XXX from title, apparently the ML doesn't like them :) reg.c | 6 ++++++ 1 file changed, 6 insertions(+)