Commit 7e559ec3 authored by Joe Perches's avatar Joe Perches Committed by John W. Linville

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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 5cb56af2
...@@ -19,14 +19,19 @@ ...@@ -19,14 +19,19 @@
void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...) void ath_print(struct ath_common *common, int dbg_mask, const char *fmt, ...)
{ {
struct va_format vaf;
va_list args; va_list args;
if (likely(!(common->debug_mask & dbg_mask))) if (likely(!(common->debug_mask & dbg_mask)))
return; return;
va_start(args, fmt); va_start(args, fmt);
printk(KERN_DEBUG "ath: ");
vprintk(fmt, args); vaf.fmt = fmt;
vaf.va = &args;
printk(KERN_DEBUG "ath: %pV", &vaf);
va_end(args); va_end(args);
} }
EXPORT_SYMBOL(ath_print); EXPORT_SYMBOL(ath_print);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment