[crda] 05/16: crda: add AUTO-BW rule flag support

debian-kernel at lists.debian.org debian-kernel at lists.debian.org
Wed Jan 18 02:22:55 UTC 2017


This is an automated email from the git hooks/post-receive script.

benh pushed a commit to branch master
in repository crda.

commit 0091c6eb383121fc66be74fe85519b0edb87bddc
Author: Janusz Dziedzic <janusz.dziedzic at tieto.com>
Date:   Fri May 9 10:38:43 2014 +0200

    crda: add AUTO-BW rule flag support
    
    Signed-off-by: Janusz Dziedzic <janusz.dziedzic at tieto.com>
    Signed-off-by: Luis R. Rodriguez <mcgrof at do-not-panic.com>
---
 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;
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/crda.git



More information about the Kernel-svn-changes mailing list