Signed-off-by: Janusz Dziedzic <janusz.dziedzic@xxxxxxxxx> --- regdb.h | 1 + reglib.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/regdb.h b/regdb.h index 20f29e9..3ffb781 100644 --- a/regdb.h +++ b/regdb.h @@ -81,6 +81,7 @@ enum reg_rule_flags { * Point links */ RRF_NO_IR = 1<<7, /* do not initiate radiation */ __RRF_NO_IBSS = 1<<8, /* old no-IBSS rule, maps to no-ir */ + RRF_AUTO_BW = 1<<11, /* Auto BW calculations */ }; #define RRF_NO_IR_ALL (RRF_NO_IR | __RRF_NO_IBSS) diff --git a/reglib.c b/reglib.c index 1e57634..3deca4a 100644 --- a/reglib.c +++ b/reglib.c @@ -750,6 +750,8 @@ static void print_reg_rule(const struct ieee80211_reg_rule *rule) printf(", PTMP-ONLY"); if (rule->flags & RRF_NO_IR_ALL) printf(", NO-IR"); + if (rule->flags & RRF_AUTO_BW) + printf(", AUTO-BW"); printf("\n"); } @@ -793,6 +795,8 @@ static uint32_t reglib_parse_rule_flag(char *flag_s) return RRF_PTMP_ONLY; if (strncmp(flag_s, "NO-IR", 5) == 0) return RRF_NO_IR; + if (strncmp(flag_s, "AUTO-BW", 7) == 0) + return RRF_AUTO_BW; return 0; } -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html