diff options
Diffstat (limited to 'drivers/net/wireless/ath/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/debug.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/debug.c b/drivers/net/wireless/ath/debug.c index dacfb234f49..a9600ba8cea 100644 --- a/drivers/net/wireless/ath/debug.c +++ b/drivers/net/wireless/ath/debug.c | |||
@@ -19,14 +19,19 @@ | |||
19 | 19 | ||
20 | void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...) | 20 | void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...) |
21 | { | 21 | { |
22 | struct va_format vaf; | ||
22 | va_list args; | 23 | va_list args; |
23 | 24 | ||
24 | if (likely(!(common->debug_mask & dbg_mask))) | 25 | if (likely(!(common->debug_mask & dbg_mask))) |
25 | return; | 26 | return; |
26 | 27 | ||
27 | va_start(args, fmt); | 28 | va_start(args, fmt); |
28 | printk(KERN_DEBUG "ath: "); | 29 | |
29 | vprintk(fmt, args); | 30 | vaf.fmt = fmt; |
31 | vaf.va = &args; | ||
32 | |||
33 | printk(KERN_DEBUG "ath: %pV", &vaf); | ||
34 | |||
30 | va_end(args); | 35 | va_end(args); |
31 | } | 36 | } |
32 | EXPORT_SYMBOL(ath_print); | 37 | EXPORT_SYMBOL(ath_print); |