Reverted refactoring of 'interrogate' cmds to 'query'
[acx-mac80211.git] / acx_debug.h
blob37749bae9d7a1228a8c74e7a7db9f097eedac43a
1 #ifndef _ACX_DEBUG_H_
2 #define _ACX_DEBUG_H_
4 /*
5 * acx_debug.h: logging constants and helpers
7 * Copyright (c) 2008, Francis Galiegue <fgaliegue@gmail.com> for the ACX100
8 * driver project.
10 * This file is licensed under GPL version 2.
14 * ACX_DEBUG:
15 * set to 0 if you don't want any debugging code to be compiled in
16 * set to 1 if you want some debugging
17 * set to 2 if you want extensive debug log
19 #define ACX_DEBUG 2
21 #if ACX_DEBUG
22 extern unsigned int acx_debug;
23 #else
24 enum { acx_debug = 0 };
25 #endif
27 #endif /* _ACX_DEBUG_H_ */