Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Oct 2008 18:47:48 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r184370 - head/tools/tools/ath/athdebug
Message-ID:  <200810271847.m9RIlm1W050257@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sam
Date: Mon Oct 27 18:47:48 2008
New Revision: 184370
URL: http://svn.freebsd.org/changeset/base/184370

Log:
  add regdomain knob

Modified:
  head/tools/tools/ath/athdebug/athdebug.c

Modified: head/tools/tools/ath/athdebug/athdebug.c
==============================================================================
--- head/tools/tools/ath/athdebug/athdebug.c	Mon Oct 27 18:30:33 2008	(r184369)
+++ head/tools/tools/ath/athdebug/athdebug.c	Mon Oct 27 18:47:48 2008	(r184370)
@@ -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 @@ enum {
 	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 @@ static struct {
 	{ "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?200810271847.m9RIlm1W050257>