From: Clemens Ladisch Date: Mon, 9 Oct 2006 06:14:58 +0000 (+0200) Subject: [ALSA] soc-core: fix multi-line string literal X-Git-Tag: v3.12-rc1~31512^2~62^2~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e117483e3e713c6411968afea825daa1133bc28d;p=kernel%2Fkernel-generic.git [ALSA] soc-core: fix multi-line string literal Properly quote a string that had an embedded newline. Signed-off-by: Clemens Ladisch Signed-off-by: Jaroslav Kysela --- diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index e841ad4..eba0a10 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -575,8 +575,8 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) } dbg("asoc: %s <-> %s info:\n", rtd->codec_dai->name, rtd->cpu_dai->name); - dbg("asoc: rate mask 0x%x \nasoc: min ch %d max ch %d\n - asoc: min rate %d max rate %d\n", + dbg("asoc: rate mask 0x%x \nasoc: min ch %d max ch %d\n" + "asoc: min rate %d max rate %d\n", runtime->hw.rates, runtime->hw.channels_min, runtime->hw.channels_max, runtime->hw.rate_min, runtime->hw.rate_max);