From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755037Ab0IMVl7 (ORCPT ); Mon, 13 Sep 2010 17:41:59 -0400 Received: from cantor2.suse.de ([195.135.220.15]:39343 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752382Ab0IMVl6 (ORCPT ); Mon, 13 Sep 2010 17:41:58 -0400 Date: Mon, 13 Sep 2010 23:41:55 +0200 Message-ID: From: Takashi Iwai To: Joe Perches Cc: Jiri Kosina , Geoff Levand , Jaroslav Kysela , Liam Girdwood , Mark Brown , linuxppc-dev@lists.ozlabs.org, cbe-oss-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org Subject: Re: [PATCH 11/11] sound: Remove pr_ uses of KERN_ In-Reply-To: <27a88f64b5bfec16c8abf5aca89b7a1b7533ecb9.1284267142.git.joe@perches.com> References: <27a88f64b5bfec16c8abf5aca89b7a1b7533ecb9.1284267142.git.joe@perches.com> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.1 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Sat, 11 Sep 2010 22:10:59 -0700, Joe Perches wrote: > > Signed-off-by: Joe Perches Applied to sound git tree now. Thanks. Takashi > --- > sound/ppc/snd_ps3.c | 2 +- > sound/soc/s3c24xx/s3c-dma.c | 3 +-- > 2 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/sound/ppc/snd_ps3.c b/sound/ppc/snd_ps3.c > index 2f12da4..581a670 100644 > --- a/sound/ppc/snd_ps3.c > +++ b/sound/ppc/snd_ps3.c > @@ -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, > diff --git a/sound/soc/s3c24xx/s3c-dma.c b/sound/soc/s3c24xx/s3c-dma.c > index 1b61c23..f1b1bc4 100644 > --- a/sound/soc/s3c24xx/s3c-dma.c > +++ b/sound/soc/s3c24xx/s3c-dma.c > @@ -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, > -- > 1.7.3.rc1 >