diff options
author | Liam Girdwood <liam.r.girdwood@linux.intel.com> | 2014-10-16 15:29:17 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-20 12:20:34 +0100 |
commit | 8046249d3ef18a1093fbee9ab8eb16c05c13edc7 (patch) | |
tree | 701af5cbd4901b6a50f1543346f996ed510b8d63 /sound/soc/intel | |
parent | 48dc326f6ba71ba0ee5b1bbfc128a6577ba98608 (diff) | |
download | op-kernel-dev-8046249d3ef18a1093fbee9ab8eb16c05c13edc7.zip op-kernel-dev-8046249d3ef18a1093fbee9ab8eb16c05c13edc7.tar.gz |
ASoC: Intel: Make HSW/BDW pointer debug verbose
Improve the debug SNR by making the positional pointer debug more verbose.
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel')
-rw-r--r-- | sound/soc/intel/sst-haswell-pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/intel/sst-haswell-pcm.c b/sound/soc/intel/sst-haswell-pcm.c index 32a33b9..32a6470 100644 --- a/sound/soc/intel/sst-haswell-pcm.c +++ b/sound/soc/intel/sst-haswell-pcm.c @@ -552,7 +552,7 @@ static u32 hsw_notify_pointer(struct sst_hsw_stream *stream, void *data) pos = frames_to_bytes(runtime, (runtime->control->appl_ptr % runtime->buffer_size)); - dev_dbg(rtd->dev, "PCM: App pointer %d bytes\n", pos); + dev_vdbg(rtd->dev, "PCM: App pointer %d bytes\n", pos); /* let alsa know we have play a period */ snd_pcm_period_elapsed(substream); @@ -574,7 +574,7 @@ static snd_pcm_uframes_t hsw_pcm_pointer(struct snd_pcm_substream *substream) offset = bytes_to_frames(runtime, position); ppos = sst_hsw_get_dsp_presentation_position(hsw, pcm_data->stream); - dev_dbg(rtd->dev, "PCM: DMA pointer %du bytes, pos %llu\n", + dev_vdbg(rtd->dev, "PCM: DMA pointer %du bytes, pos %llu\n", position, ppos); return offset; } |