diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-23 10:20:50 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-28 01:21:33 -0500 |
commit | ccaac9ed79c6051733f781a1cd639d488696f512 (patch) | |
tree | 5d93f0424517cb65b4e1d107c2a13df083e89847 /sound/usb/line6 | |
parent | d8131e67f08bc15e54104cb69deb06bad9d87f30 (diff) |
ALSA: line6: Use dev_err()
This is the last remaining snd_printk() usage in this driver.
Tested-by: Chris Rorvick <chris@rorvick.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/line6')
-rw-r--r-- | sound/usb/line6/pcm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/usb/line6/pcm.c b/sound/usb/line6/pcm.c index 677419dcacf9..4152d92105b1 100644 --- a/sound/usb/line6/pcm.c +++ b/sound/usb/line6/pcm.c | |||
@@ -128,7 +128,8 @@ static void line6_wait_clear_audio_urbs(struct snd_line6_pcm *line6pcm, | |||
128 | schedule_timeout(1); | 128 | schedule_timeout(1); |
129 | } while (--timeout > 0); | 129 | } while (--timeout > 0); |
130 | if (alive) | 130 | if (alive) |
131 | snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive); | 131 | dev_err(line6pcm->line6->ifcdev, |
132 | "timeout: still %d active urbs..\n", alive); | ||
132 | } | 133 | } |
133 | 134 | ||
134 | static bool test_flags(unsigned long flags0, unsigned long flags1, | 135 | static bool test_flags(unsigned long flags0, unsigned long flags1, |