Commit 9d01df06 authored by Takashi Iwai's avatar Takashi Iwai

ASoC: don't pass the string as the format arguemtn for dev_info()

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 722bc283
......@@ -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);
......
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