From: Takashi Iwai Date: Wed, 22 Dec 2010 13:08:40 +0000 (+0100) Subject: ASoC: don't pass the string as the format arguemtn for dev_info() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9d01df063e70260d6c0aabd58dd5507db151aa51;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git ASoC: don't pass the string as the format arguemtn for dev_info() Signed-off-by: Takashi Iwai --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 50f5c785cb61..499730ab5638 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -110,7 +110,7 @@ static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...) va_start(args, fmt); vsnprintf(buf, PAGE_SIZE, fmt, args); - dev_info(dev, buf); + dev_info(dev, "%s", buf); va_end(args); kfree(buf);