diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index d59e0c1a3e20daee298be8dba8bece22deac8356..98ca3540514f82b65c08c1d81a5ddf69ca217c5d 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c @@ -1491,9 +1491,9 @@ static void retire_playback_urb(struct snd_usb_substream *subs, * The error should be lower than 2ms since the estimate relies * on two reads of a counter updated every ms. */ - if (printk_ratelimit() && - abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2) - snd_printk(KERN_DEBUG "delay: estimated %d, actual %d\n", + if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2) + dev_dbg_ratelimited(&subs->dev->dev, + "delay: estimated %d, actual %d\n", est_delay, subs->last_delay); if (!subs->running) {