Skip to content

Commit

Permalink
sound: Remove pr_<level> uses of KERN_<level>
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Joe Perches authored and Takashi Iwai committed Sep 13, 2010
1 parent 49553c2 commit 147fcf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sound/ppc/snd_ps3.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ static int snd_ps3_delay_to_bytes(struct snd_pcm_substream *substream,
rate * delay_ms / 1000)
* substream->runtime->channels;

pr_debug(KERN_ERR "%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
pr_debug("%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
__func__,
delay_ms,
rate,
Expand Down
3 changes: 1 addition & 2 deletions sound/soc/s3c24xx/s3c-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ static void s3c_dma_enqueue(struct snd_pcm_substream *substream)

if ((pos + len) > prtd->dma_end) {
len = prtd->dma_end - pos;
pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
__func__, len);
pr_debug("%s: corrected dma len %ld\n", __func__, len);
}

ret = s3c2410_dma_enqueue(prtd->params->channel,
Expand Down

0 comments on commit 147fcf1

Please sign in to comment.