diff options
author | Liam Girdwood <liam.girdwood@wolfsonmicro.com> | 2006-10-13 13:13:41 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 03:00:55 -0500 |
commit | b5c5fd24b9d34e4670cb339e546bfae7ad316354 (patch) | |
tree | b9670b39db0726e3657eb9e764f0f09b5bf44ec4 /sound/soc | |
parent | 35f60839b6158f72d2be0dd2764ad772e1d44e8a (diff) |
[ALSA] ASoC debug output build breakage
This patch fixes a build failure when ASoC debug is enabled.
Signed-off-by: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/soc-core.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index eba0a1012531..8d6ff047d7a0 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
@@ -575,10 +575,11 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
575 | } | 575 | } |
576 | 576 | ||
577 | dbg("asoc: %s <-> %s info:\n", rtd->codec_dai->name, rtd->cpu_dai->name); | 577 | dbg("asoc: %s <-> %s info:\n", rtd->codec_dai->name, rtd->cpu_dai->name); |
578 | dbg("asoc: rate mask 0x%x \nasoc: min ch %d max ch %d\n" | 578 | dbg("asoc: rate mask 0x%x\n", runtime->hw.rates); |
579 | "asoc: min rate %d max rate %d\n", | 579 | dbg("asoc: min ch %d max ch %d\n", runtime->hw.channels_min, |
580 | runtime->hw.rates, runtime->hw.channels_min, | 580 | runtime->hw.channels_max); |
581 | runtime->hw.channels_max, runtime->hw.rate_min, runtime->hw.rate_max); | 581 | dbg("asoc: min rate %d max rate %d\n", runtime->hw.rate_min, |
582 | runtime->hw.rate_max); | ||
582 | 583 | ||
583 | 584 | ||
584 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 585 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |