diff options
author | David Dastous <ddastoussthi@nvidia.com> | 2014-07-30 15:31:49 -0700 |
---|---|---|
committer | Manish Tuteja <mtuteja@nvidia.com> | 2014-07-30 21:19:09 -0700 |
commit | 18f5872d2168a0671a78d5a460600e3a777af11d (patch) | |
tree | 2b27c72ada0b1ebc38b55a0c715650d14e000289 | |
parent | 282fa8e2055eea1364b5864b0b997f30890107f8 (diff) |
arm:tegra:thor: Sound debug print fix
Debugging message should be listed under snd_printdd
Bug 200020654
Change-Id: I934d4de870e38dff80bf1d0731e9f66d8e39812b
Signed-off-by: David Dastous <ddastoussthi@nvidia.com>
Reviewed-on: http://git-master/r/449022
Reviewed-by: Anshul Jain (SW) <anshulj@nvidia.com>
Reviewed-by: Vinayak Pane <vpane@nvidia.com>
-rw-r--r-- | sound/usb/endpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c index 08dcce53720b..2e650e52dfa3 100644 --- a/sound/usb/endpoint.c +++ b/sound/usb/endpoint.c @@ -765,7 +765,7 @@ static int retire_playback_urb(struct snd_usb_substream *subs, * on two reads of a counter updated every ms. */ if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2) - snd_printk(KERN_DEBUG "delay: estimated %d, actual %d\n", + snd_printdd(KERN_DEBUG "delay: estimated %d, actual %d\n", est_delay, subs->last_delay); spin_unlock_irqrestore(&subs->lock, flags); |