diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2006-10-09 08:14:58 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 09:00:33 +0100 |
commit | e117483e3e713c6411968afea825daa1133bc28d (patch) | |
tree | 3df16a29459ef84a4578b304b6a004ceab2d1aaf /sound/soc/soc-core.c | |
parent | 8dafc0fb49b903c4e7262b2622bef8342345c700 (diff) | |
download | op-kernel-dev-e117483e3e713c6411968afea825daa1133bc28d.zip op-kernel-dev-e117483e3e713c6411968afea825daa1133bc28d.tar.gz |
[ALSA] soc-core: fix multi-line string literal
Properly quote a string that had an embedded newline.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |