commit | 9d01df063e70260d6c0aabd58dd5507db151aa51 | [log] [tgz] |
---|---|---|
author | Takashi Iwai <tiwai@suse.de> | Wed Dec 22 14:08:40 2010 +0100 |
committer | Takashi Iwai <tiwai@suse.de> | Wed Dec 22 14:08:40 2010 +0100 |
tree | 2eea61fb60eafdddd4e58e5c540a9282f268615b | |
parent | 722bc28384accb67c0bfbbe1914fd82d4d0c996a [diff] [blame] |
ASoC: don't pass the string as the format arguemtn for dev_info() Signed-off-by: Takashi Iwai <tiwai@suse.de>
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 50f5c785..499730a 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c
@@ -110,7 +110,7 @@ va_start(args, fmt); vsnprintf(buf, PAGE_SIZE, fmt, args); - dev_info(dev, buf); + dev_info(dev, "%s", buf); va_end(args); kfree(buf);