diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2005-12-13 22:13:41 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2005-12-13 22:13:41 +0000 |
| commit | 7613cbabe409f82eabbe7122df433fd791d5c1b4 (patch) | |
| tree | df317e695e913563e83777ff2017f1c346191c6e | |
| parent | 44301bc9d59dc69198f8a65bc5d8011c84fa0fee (diff) | |
Notes
| -rw-r--r-- | tools/tools/ath/athdebug/athdebug.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/tools/ath/athdebug/athdebug.c b/tools/tools/ath/athdebug/athdebug.c index 06591cda7459..3480224b3a11 100644 --- a/tools/tools/ath/athdebug/athdebug.c +++ b/tools/tools/ath/athdebug/athdebug.c @@ -71,6 +71,9 @@ enum { ATH_DEBUG_KEYCACHE = 0x00020000, /* key cache management */ ATH_DEBUG_STATE = 0x00040000, /* 802.11 state transitions */ ATH_DEBUG_NODE = 0x00080000, /* node management */ + ATH_DEBUG_LED = 0x00100000, /* led management */ + ATH_DEBUG_FF = 0x00200000, /* fast frames */ + ATH_DEBUG_DFS = 0x00400000, /* DFS processing */ ATH_DEBUG_FATAL = 0x80000000, /* fatal errors */ ATH_DEBUG_ANY = 0xffffffff }; @@ -96,6 +99,9 @@ static struct { { "keycache", ATH_DEBUG_KEYCACHE }, { "state", ATH_DEBUG_STATE }, { "node", ATH_DEBUG_NODE }, + { "led", ATH_DEBUG_LED }, + { "ff", ATH_DEBUG_FF }, + { "dfs", ATH_DEBUG_DFS }, { "fatal", ATH_DEBUG_FATAL }, }; |
