* [PATCH] sound/atmel_ssc_dai: add a missing space to an error message
@ 2011-06-09 22:41 Uwe Kleine-König
2011-06-10 7:44 ` Nicolas Ferre
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2011-06-09 22:41 UTC (permalink / raw)
To: Nicolas Ferre; +Cc: alsa-devel, Mark Brown, trivial, Liam Girdwood
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
sound/soc/atmel/atmel_ssc_dai.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
index 7fbfa05..7d6ab47 100644
--- a/sound/soc/atmel/atmel_ssc_dai.c
+++ b/sound/soc/atmel/atmel_ssc_dai.c
@@ -402,7 +402,7 @@ static int atmel_ssc_hw_params(struct snd_pcm_substream *substream,
if ((ssc_p->daifmt & SND_SOC_DAIFMT_FORMAT_MASK) == SND_SOC_DAIFMT_I2S
&& bits > 16) {
printk(KERN_WARNING
- "atmel_ssc_dai: sample size %d"
+ "atmel_ssc_dai: sample size %d "
"is too large for I2S\n", bits);
return -EINVAL;
}
--
1.7.5.3
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] sound/atmel_ssc_dai: add a missing space to an error message
2011-06-09 22:41 [PATCH] sound/atmel_ssc_dai: add a missing space to an error message Uwe Kleine-König
@ 2011-06-10 7:44 ` Nicolas Ferre
2011-06-10 8:25 ` Liam Girdwood
2011-06-10 9:55 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Nicolas Ferre @ 2011-06-10 7:44 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: alsa-devel, Mark Brown, trivial, Liam Girdwood
Le 10/06/2011 00:41, Uwe Kleine-König :
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
> sound/soc/atmel/atmel_ssc_dai.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c
> index 7fbfa05..7d6ab47 100644
> --- a/sound/soc/atmel/atmel_ssc_dai.c
> +++ b/sound/soc/atmel/atmel_ssc_dai.c
> @@ -402,7 +402,7 @@ static int atmel_ssc_hw_params(struct snd_pcm_substream *substream,
> if ((ssc_p->daifmt & SND_SOC_DAIFMT_FORMAT_MASK) == SND_SOC_DAIFMT_I2S
> && bits > 16) {
> printk(KERN_WARNING
> - "atmel_ssc_dai: sample size %d"
> + "atmel_ssc_dai: sample size %d "
> "is too large for I2S\n", bits);
> return -EINVAL;
> }
Thanks, bye,
--
Nicolas Ferre
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sound/atmel_ssc_dai: add a missing space to an error message
2011-06-09 22:41 [PATCH] sound/atmel_ssc_dai: add a missing space to an error message Uwe Kleine-König
2011-06-10 7:44 ` Nicolas Ferre
@ 2011-06-10 8:25 ` Liam Girdwood
2011-06-10 9:55 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Liam Girdwood @ 2011-06-10 8:25 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: trivial@kernel.org, alsa-devel@alsa-project.org, Mark Brown,
Nicolas Ferre, Liam Girdwood
On 09/06/11 23:41, Uwe Kleine-König wrote:
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
> sound/soc/atmel/atmel_ssc_dai.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
Acked-by: Liam Girdwood <lrg@ti.com>
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sound/atmel_ssc_dai: add a missing space to an error message
2011-06-09 22:41 [PATCH] sound/atmel_ssc_dai: add a missing space to an error message Uwe Kleine-König
2011-06-10 7:44 ` Nicolas Ferre
2011-06-10 8:25 ` Liam Girdwood
@ 2011-06-10 9:55 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2011-06-10 9:55 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: trivial, alsa-devel, Nicolas Ferre, Liam Girdwood
On Fri, Jun 10, 2011 at 12:41:48AM +0200, Uwe Kleine-König wrote:
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Applied, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-06-10 9:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-09 22:41 [PATCH] sound/atmel_ssc_dai: add a missing space to an error message Uwe Kleine-König
2011-06-10 7:44 ` Nicolas Ferre
2011-06-10 8:25 ` Liam Girdwood
2011-06-10 9:55 ` Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.