Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2008 19:47:24 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 151828 for review
Message-ID:  <200810231947.m9NJlO52088613@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=151828

Change 151828 by sam@sam_ebb on 2008/10/23 19:46:33

	add regdomain knob

Affected files ...

.. //depot/projects/vap/tools/tools/ath/athdebug/athdebug.c#4 edit

Differences ...

==== //depot/projects/vap/tools/tools/ath/athdebug/athdebug.c#4 (text+ko) ====

@@ -41,6 +41,7 @@
 #include <stdio.h>
 #include <ctype.h>
 #include <getopt.h>
+#include <stdlib.h>
 
 #define	N(a)	(sizeof(a)/sizeof(a[0]))
 
@@ -68,6 +69,7 @@
 	ATH_DEBUG_FF		= 0x00200000,	/* fast frames */
 	ATH_DEBUG_DFS		= 0x00400000,	/* DFS processing */
 	ATH_DEBUG_TDMA		= 0x00800000,	/* TDMA processing */
+	ATH_DEBUG_REGDOMAIN	= 0x02000000,	/* regulatory processing */
 	ATH_DEBUG_FATAL		= 0x80000000,	/* fatal errors */
 	ATH_DEBUG_ANY		= 0xffffffff
 };
@@ -97,6 +99,7 @@
 	{ "ff",		ATH_DEBUG_FF },
 	{ "dfs",	ATH_DEBUG_DFS },
 	{ "tdma",	ATH_DEBUG_TDMA },
+	{ "regdomain",	ATH_DEBUG_REGDOMAIN },
 	{ "fatal",	ATH_DEBUG_FATAL },
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810231947.m9NJlO52088613>