alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] eukrea-tlv320: add support for cpuimx35sd
@ 2010-07-19  8:40 Eric Bénard
  2010-07-19 18:55 ` Liam Girdwood
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Bénard @ 2010-07-19  8:40 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, s.hauer, lrg

Signed-off-by: Eric Bénard <eric@eukrea.com>
---
 sound/soc/imx/Kconfig         |    2 +-
 sound/soc/imx/eukrea-tlv320.c |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/sound/soc/imx/Kconfig b/sound/soc/imx/Kconfig
index 2f0d6d3..52dac5e 100644
--- a/sound/soc/imx/Kconfig
+++ b/sound/soc/imx/Kconfig
@@ -32,6 +32,6 @@ config SND_SOC_EUKREA_TLV320
 	select SND_SOC_TLV320AIC23
 	help
 	  Enable I2S based access to the TLV320AIC23B codec attached
-	  to the SSI4 interface
+	  to the SSI interface
 
 endif	# SND_IMX_SOC
diff --git a/sound/soc/imx/eukrea-tlv320.c b/sound/soc/imx/eukrea-tlv320.c
index 45f5e4b..f15dfbd 100644
--- a/sound/soc/imx/eukrea-tlv320.c
+++ b/sound/soc/imx/eukrea-tlv320.c
@@ -101,7 +101,8 @@ static int __init eukrea_tlv320_init(void)
 {
 	int ret;
 
-	if (!machine_is_eukrea_cpuimx27() && !machine_is_eukrea_cpuimx25sd())
+	if (!machine_is_eukrea_cpuimx27() && !machine_is_eukrea_cpuimx25sd()
+		&& !machine_is_eukrea_cpuimx35sd())
 		/* return happy. We might run on a totally different machine */
 		return 0;
 
-- 
1.6.3.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] 6+ messages in thread

* Re: [PATCH] eukrea-tlv320: add support for cpuimx35sd
  2010-07-19  8:40 [PATCH] eukrea-tlv320: add support for cpuimx35sd Eric Bénard
@ 2010-07-19 18:55 ` Liam Girdwood
  2010-07-20  8:47   ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Liam Girdwood @ 2010-07-19 18:55 UTC (permalink / raw)
  To: Eric Bénard; +Cc: alsa-devel, broonie, s.hauer

On Mon, 2010-07-19 at 10:40 +0200, Eric Bénard wrote:
> Signed-off-by: Eric Bénard <eric@eukrea.com>
> ---
>  sound/soc/imx/Kconfig         |    2 +-
>  sound/soc/imx/eukrea-tlv320.c |    3 ++-
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/soc/imx/Kconfig b/sound/soc/imx/Kconfig
> index 2f0d6d3..52dac5e 100644
> --- a/sound/soc/imx/Kconfig
> +++ b/sound/soc/imx/Kconfig
> @@ -32,6 +32,6 @@ config SND_SOC_EUKREA_TLV320
>  	select SND_SOC_TLV320AIC23
>  	help
>  	  Enable I2S based access to the TLV320AIC23B codec attached
> -	  to the SSI4 interface
> +	  to the SSI interface
>  
>  endif	# SND_IMX_SOC
> diff --git a/sound/soc/imx/eukrea-tlv320.c b/sound/soc/imx/eukrea-tlv320.c
> index 45f5e4b..f15dfbd 100644
> --- a/sound/soc/imx/eukrea-tlv320.c
> +++ b/sound/soc/imx/eukrea-tlv320.c
> @@ -101,7 +101,8 @@ static int __init eukrea_tlv320_init(void)
>  {
>  	int ret;
>  
> -	if (!machine_is_eukrea_cpuimx27() && !machine_is_eukrea_cpuimx25sd())
> +	if (!machine_is_eukrea_cpuimx27() && !machine_is_eukrea_cpuimx25sd()
> +		&& !machine_is_eukrea_cpuimx35sd())
>  		/* return happy. We might run on a totally different machine */
>  		return 0;
>  
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] eukrea-tlv320: add support for cpuimx35sd
  2010-07-19 18:55 ` Liam Girdwood
@ 2010-07-20  8:47   ` Mark Brown
  2010-07-26 11:20     ` javier Martin
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2010-07-20  8:47 UTC (permalink / raw)
  To: Liam Girdwood; +Cc: alsa-devel, s.hauer, Eric Bénard

On Mon, Jul 19, 2010 at 07:55:03PM +0100, Liam Girdwood wrote:
> On Mon, 2010-07-19 at 10:40 +0200, Eric Bénard wrote:
> > Signed-off-by: Eric Bénard <eric@eukrea.com>

> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>

Applied, thanks.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] eukrea-tlv320: add support for cpuimx35sd
  2010-07-20  8:47   ` Mark Brown
@ 2010-07-26 11:20     ` javier Martin
  2010-07-26 12:40       ` Eric Bénard
  2010-07-26 13:10       ` Mark Brown
  0 siblings, 2 replies; 6+ messages in thread
From: javier Martin @ 2010-07-26 11:20 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, s.hauer, Eric Bénard, Liam Girdwood

On 20 July 2010 10:47, Mark Brown <broonie@opensource.wolfsonmicro.com>wrote:

> On Mon, Jul 19, 2010 at 07:55:03PM +0100, Liam Girdwood wrote:
> > On Mon, 2010-07-19 at 10:40 +0200, Eric Bénard wrote:
> > > Signed-off-by: Eric Bénard <eric@eukrea.com>
>
> > Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
>
> Applied, thanks.
>

May I ask where are these changes being applied?

I can't find them in linux-asoc nor pengutronix repositories.

-- 
Javier Martin
Vista Silicon S.L.
CDTUC - FASE C - Oficina S-345
Avda de los Castros s/n
39005- Santander. Cantabria. Spain
+34 942 25 32 60
www.vista-silicon.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] eukrea-tlv320: add support for cpuimx35sd
  2010-07-26 11:20     ` javier Martin
@ 2010-07-26 12:40       ` Eric Bénard
  2010-07-26 13:10       ` Mark Brown
  1 sibling, 0 replies; 6+ messages in thread
From: Eric Bénard @ 2010-07-26 12:40 UTC (permalink / raw)
  To: javier Martin; +Cc: alsa-devel, Mark Brown, s.hauer, Liam Girdwood

Hi Javier,

Le 26/07/2010 13:20, javier Martin a écrit :
> On 20 July 2010 10:47, Mark Brown<broonie@opensource.wolfsonmicro.com>wrote:
>
>> On Mon, Jul 19, 2010 at 07:55:03PM +0100, Liam Girdwood wrote:
>>> On Mon, 2010-07-19 at 10:40 +0200, Eric Bénard wrote:
>>>> Signed-off-by: Eric Bénard<eric@eukrea.com>
>>
>>> Acked-by: Liam Girdwood<lrg@slimlogic.co.uk>
>>
>> Applied, thanks.
>>
>
> May I ask where are these changes being applied?
>
> I can't find them in linux-asoc nor pengutronix repositories.
>
you can find it here :
http://git.kernel.org/?p=linux/kernel/git/tiwai/sound-2.6.git;a=summary
in the for-next branch

Eric

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] eukrea-tlv320: add support for cpuimx35sd
  2010-07-26 11:20     ` javier Martin
  2010-07-26 12:40       ` Eric Bénard
@ 2010-07-26 13:10       ` Mark Brown
  1 sibling, 0 replies; 6+ messages in thread
From: Mark Brown @ 2010-07-26 13:10 UTC (permalink / raw)
  To: javier Martin
  Cc: alsa-devel@alsa-project.org, s.hauer@pengutronix.de,
	Eric Bénard, Liam Girdwood

On 26 Jul 2010, at 04:20, javier Martin <javier.martin@vista-silicon.com> wrote:

> On 20 July 2010 10:47, Mark Brown <broonie@opensource.wolfsonmicro.com> wrote:
> On Mon, Jul 19, 2010 at 07:55:03PM +0100, Liam Girdwood wrote:
> > On Mon, 2010-07-19 at 10:40 +0200, Eric Bénard wrote:
> > > Signed-off-by: Eric Bénard <eric@eukrea.com>
> 
> > Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
> 
> Applied, thanks.
> 
> May I ask where are these changes being applied?
> 
> I can't find them in linux-asoc nor pengutronix repositories. 

Which linux-asoc repository are you talking about, where exactly are you looking? They're in upstream ALSA now and therefore also in my tree and -next. You can use MAINTAINERS to find the repositories to look in for stuff like this.
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-07-26 13:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-19  8:40 [PATCH] eukrea-tlv320: add support for cpuimx35sd Eric Bénard
2010-07-19 18:55 ` Liam Girdwood
2010-07-20  8:47   ` Mark Brown
2010-07-26 11:20     ` javier Martin
2010-07-26 12:40       ` Eric Bénard
2010-07-26 13:10       ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).