drivers/pcmcia/soc_common.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>
CC: Russell King <linux@arm.linux.org.uk>
CC: Eric Miao <eric.y.miao@gmail.com>
CC: linux-arm-kernel@lists.infradead.org
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>

authored by Joe Perches and committed by Dominik Brodowski 106665d9 86f94e3a

+7 -2
+7 -2
drivers/pcmcia/soc_common.c
··· 57 57 void soc_pcmcia_debug(struct soc_pcmcia_socket *skt, const char *func, 58 58 int lvl, const char *fmt, ...) 59 59 { 60 + struct va_format vaf; 60 61 va_list args; 61 62 if (pc_debug > lvl) { 62 - printk(KERN_DEBUG "skt%u: %s: ", skt->nr, func); 63 63 va_start(args, fmt); 64 - vprintk(fmt, args); 64 + 65 + vaf.fmt = fmt; 66 + vaf.va = &args; 67 + 68 + printk(KERN_DEBUG "skt%u: %s: %pV", skt->nr, func, &vaf); 69 + 65 70 va_end(args); 66 71 } 67 72 }