diff options
author | Takashi Iwai <tiwai@suse.de> | 2010-12-22 08:08:40 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-12-22 08:08:40 -0500 |
commit | 9d01df063e70260d6c0aabd58dd5507db151aa51 (patch) | |
tree | 2eea61fb60eafdddd4e58e5c540a9282f268615b /sound/soc/soc-dapm.c | |
parent | 722bc28384accb67c0bfbbe1914fd82d4d0c996a (diff) |
ASoC: don't pass the string as the format arguemtn for dev_info()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, ...) | |||
110 | 110 | ||
111 | va_start(args, fmt); | 111 | va_start(args, fmt); |
112 | vsnprintf(buf, PAGE_SIZE, fmt, args); | 112 | vsnprintf(buf, PAGE_SIZE, fmt, args); |
113 | dev_info(dev, buf); | 113 | dev_info(dev, "%s", buf); |
114 | va_end(args); | 114 | va_end(args); |
115 | 115 | ||
116 | kfree(buf); | 116 | kfree(buf); |