aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/debug.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-11-09 19:35:17 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-11-16 16:37:04 -0500
commit7e559ec31c5625cf85bcb1ae0eb9f8f2a8da4a29 (patch)
treef42835890e924f94307b188236cc22112b7fbcf4 /drivers/net/wireless/ath/debug.c
parent5cb56af29be8d12f74afcb2c1de91e51a577bd52 (diff)
drivers/net/wireless/ath/debug.c: Use printf extension %pV
Using %pV reduces the number of printk calls and eliminates any possible message interleaving from other printk calls. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/debug.c')
-rw-r--r--drivers/net/wireless/ath/debug.c9
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
20void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...) 20void 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}
32EXPORT_SYMBOL(ath_print); 37EXPORT_SYMBOL(ath_print);