From 5c221193fd7064309fa40b8445fac954ad8cf42e Mon Sep 17 00:00:00 2001 From: mtaylor Date: Sun, 25 Nov 2007 09:21:09 +0000 Subject: [PATCH] Fix ATH_DEBUG_GLOBAL mask git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@2966 0192ed92-7a03-0410-a25b-9323aeb14dbd --- tools/athdebug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/athdebug.c b/tools/athdebug.c index 9ab3337..4549e5a 100644 --- a/tools/athdebug.c +++ b/tools/athdebug.c @@ -85,7 +85,8 @@ enum { ATH_DEBUG_TXBUF = 0x20000000, /* TX buffer usage/leak debugging */ ATH_DEBUG_SKB = 0x40000000, /* SKB usage/leak debugging [applies to all vaps] */ ATH_DEBUG_FATAL = 0x80000000, /* fatal errors */ - ATH_DEBUG_ANY = 0xffffffff + ATH_DEBUG_ANY = 0xffffffff, + ATH_DEBUG_GLOBAL = (ATH_DEBUG_SKB|ATH_DEBUG_SKB_REF) }; static struct { -- 2.35.1