diff options
Diffstat (limited to 'sound/core/seq/seq_timer.c')
| -rw-r--r-- | sound/core/seq/seq_timer.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/core/seq/seq_timer.c b/sound/core/seq/seq_timer.c index 24d44b2f61a..e73605393ee 100644 --- a/sound/core/seq/seq_timer.c +++ b/sound/core/seq/seq_timer.c @@ -57,7 +57,7 @@ struct snd_seq_timer *snd_seq_timer_new(void)  	tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);  	if (tmr == NULL) { -		snd_printd("malloc failed for snd_seq_timer_new() \n"); +		pr_debug("ALSA: seq: malloc failed for snd_seq_timer_new() \n");  		return NULL;  	}  	spin_lock_init(&tmr->lock); @@ -78,7 +78,7 @@ void snd_seq_timer_delete(struct snd_seq_timer **tmr)  	*tmr = NULL;  	if (t == NULL) { -		snd_printd("oops: snd_seq_timer_delete() called with NULL timer\n"); +		pr_debug("ALSA: seq: snd_seq_timer_delete() called with NULL timer\n");  		return;  	}  	t->running = 0; @@ -199,7 +199,7 @@ int snd_seq_timer_set_ppq(struct snd_seq_timer * tmr, int ppq)  		/* refuse to change ppq on running timers */  		/* because it will upset the song position (ticks) */  		spin_unlock_irqrestore(&tmr->lock, flags); -		snd_printd("seq: cannot change ppq of a running timer\n"); +		pr_debug("ALSA: seq: cannot change ppq of a running timer\n");  		return -EBUSY;  	} @@ -252,7 +252,7 @@ int snd_seq_timer_set_skew(struct snd_seq_timer *tmr, unsigned int skew,  	/* FIXME */  	if (base != SKEW_BASE) { -		snd_printd("invalid skew base 0x%x\n", base); +		pr_debug("ALSA: seq: invalid skew base 0x%x\n", base);  		return -EINVAL;  	}  	spin_lock_irqsave(&tmr->lock, flags); @@ -292,7 +292,7 @@ int snd_seq_timer_open(struct snd_seq_queue *q)  		}  	}  	if (err < 0) { -		snd_printk(KERN_ERR "seq fatal error: cannot create timer (%i)\n", err); +		pr_err("ALSA: seq fatal error: cannot create timer (%i)\n", err);  		return err;  	}  	t->callback = snd_seq_timer_interrupt;  | 
