aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq/seq_fifo.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-02-04 18:24:34 +0100
committerTakashi Iwai <tiwai@suse.de>2014-02-14 08:14:18 +0100
commit04cc79a048ee215ec39af05d61f1fc8a4ab3d8c1 (patch)
treeac6379dce34e9f9e55fd656f10a23192203bcda3 /sound/core/seq/seq_fifo.c
parentALSA: timer: Use standard printk helpers (diff)
downloadlinux-dev-04cc79a048ee215ec39af05d61f1fc8a4ab3d8c1.tar.xz
linux-dev-04cc79a048ee215ec39af05d61f1fc8a4ab3d8c1.zip
ALSA: seq: Use standard printk helpers
Use the standard pr_xxx() helpers instead of home-baked snd_print*(). Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/seq/seq_fifo.c')
-rw-r--r--sound/core/seq/seq_fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/seq_fifo.c b/sound/core/seq/seq_fifo.c
index 0d75afa786bc..559989992bef 100644
--- a/sound/core/seq/seq_fifo.c
+++ b/sound/core/seq/seq_fifo.c
@@ -34,7 +34,7 @@ struct snd_seq_fifo *snd_seq_fifo_new(int poolsize)
f = kzalloc(sizeof(*f), GFP_KERNEL);
if (f == NULL) {
- snd_printd("malloc failed for snd_seq_fifo_new() \n");
+ pr_debug("ALSA: seq: malloc failed for snd_seq_fifo_new() \n");
return NULL;
}