summaryrefslogtreecommitdiffstats
path: root/sound/core/seq/oss/seq_oss_readq.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2014-02-04 18:24:04 +0100
committerTakashi Iwai <tiwai@suse.de>2014-02-14 08:14:18 +0100
commitbb343e7969cb8a4b6b20bddc97098c87f4fae2b5 (patch)
tree753fa63b04da919f2c289310e72873ae64aa5abd /sound/core/seq/oss/seq_oss_readq.c
parent04cc79a048ee215ec39af05d61f1fc8a4ab3d8c1 (diff)
downloadlinux-bb343e7969cb8a4b6b20bddc97098c87f4fae2b5.tar.bz2
ALSA: seq_oss: 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/oss/seq_oss_readq.c')
-rw-r--r--sound/core/seq/oss/seq_oss_readq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/core/seq/oss/seq_oss_readq.c b/sound/core/seq/oss/seq_oss_readq.c
index 73661c4ab82a..654d17a5023c 100644
--- a/sound/core/seq/oss/seq_oss_readq.c
+++ b/sound/core/seq/oss/seq_oss_readq.c
@@ -48,12 +48,12 @@ snd_seq_oss_readq_new(struct seq_oss_devinfo *dp, int maxlen)
struct seq_oss_readq *q;
if ((q = kzalloc(sizeof(*q), GFP_KERNEL)) == NULL) {
- snd_printk(KERN_ERR "can't malloc read queue\n");
+ pr_err("ALSA: seq_oss: can't malloc read queue\n");
return NULL;
}
if ((q->q = kcalloc(maxlen, sizeof(union evrec), GFP_KERNEL)) == NULL) {
- snd_printk(KERN_ERR "can't malloc read queue buffer\n");
+ pr_err("ALSA: seq_oss: can't malloc read queue buffer\n");
kfree(q);
return NULL;
}