aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/include/a_debug.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-02-02 17:05:51 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-02 17:34:50 -0500
commite1ce2a3afe041c36ae397abf73f8059eb599e36e (patch)
treeb7e883d91a26f2081a73454f4f389f0ad89a86f6 /drivers/staging/ath6kl/include/a_debug.h
parent4853ac05cff7745979830c52fe6fb46a7be6fa94 (diff)
staging: ath6kl: Convert A_UINT32 to u32
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/ath6kl/include/a_debug.h')
-rw-r--r--drivers/staging/ath6kl/include/a_debug.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/ath6kl/include/a_debug.h b/drivers/staging/ath6kl/include/a_debug.h
index dbba3f85616..57472cfb7e9 100644
--- a/drivers/staging/ath6kl/include/a_debug.h
+++ b/drivers/staging/ath6kl/include/a_debug.h
@@ -119,7 +119,7 @@ void DebugDumpBytes(A_UCHAR *buffer, u16 length, char *pDescription);
119#define ATH_DEBUG_MAX_MOD_DESC_LENGTH 64 119#define ATH_DEBUG_MAX_MOD_DESC_LENGTH 64
120 120
121typedef struct { 121typedef struct {
122 A_UINT32 Mask; 122 u32 Mask;
123 char Description[ATH_DEBUG_MAX_MASK_DESC_LENGTH]; 123 char Description[ATH_DEBUG_MAX_MASK_DESC_LENGTH];
124} ATH_DEBUG_MASK_DESCRIPTION; 124} ATH_DEBUG_MASK_DESCRIPTION;
125 125
@@ -129,8 +129,8 @@ typedef struct _ATH_DEBUG_MODULE_DBG_INFO{
129 struct _ATH_DEBUG_MODULE_DBG_INFO *pNext; 129 struct _ATH_DEBUG_MODULE_DBG_INFO *pNext;
130 char ModuleName[16]; 130 char ModuleName[16];
131 char ModuleDescription[ATH_DEBUG_MAX_MOD_DESC_LENGTH]; 131 char ModuleDescription[ATH_DEBUG_MAX_MOD_DESC_LENGTH];
132 A_UINT32 Flags; 132 u32 Flags;
133 A_UINT32 CurrentMask; 133 u32 CurrentMask;
134 int MaxDescriptions; 134 int MaxDescriptions;
135 ATH_DEBUG_MASK_DESCRIPTION *pMaskDescriptions; /* pointer to array of descriptions */ 135 ATH_DEBUG_MASK_DESCRIPTION *pMaskDescriptions; /* pointer to array of descriptions */
136} ATH_DEBUG_MODULE_DBG_INFO; 136} ATH_DEBUG_MODULE_DBG_INFO;
@@ -181,8 +181,8 @@ void a_register_module_debug_info(ATH_DEBUG_MODULE_DBG_INFO *pInfo);
181 181
182#endif 182#endif
183 183
184int a_get_module_mask(char *module_name, A_UINT32 *pMask); 184int a_get_module_mask(char *module_name, u32 *pMask);
185int a_set_module_mask(char *module_name, A_UINT32 Mask); 185int a_set_module_mask(char *module_name, u32 Mask);
186void a_dump_module_debug_info_by_name(char *module_name); 186void a_dump_module_debug_info_by_name(char *module_name);
187void a_module_debug_support_init(void); 187void a_module_debug_support_init(void);
188void a_module_debug_support_cleanup(void); 188void a_module_debug_support_cleanup(void);