From mboxrd@z Thu Jan 1 00:00:00 1970 From: Liam Girdwood Subject: Re: [alsa-devel] [PATCH] ASoC: OMAP: enable Overo driver for CM-T35 Date: Mon, 16 Nov 2009 14:28:47 +0000 Message-ID: <1258381727.3570.122.camel@odin> References: <1258379603-29089-1-git-send-email-mike@compulab.co.il> <1258380019.3570.113.camel@odin> <4B015F6D.1000001@compulab.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from fg-out-1718.google.com ([72.14.220.159]:27631 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753340AbZKPO2v (ORCPT ); Mon, 16 Nov 2009 09:28:51 -0500 Received: by fg-out-1718.google.com with SMTP id d23so1244100fga.1 for ; Mon, 16 Nov 2009 06:28:56 -0800 (PST) In-Reply-To: <4B015F6D.1000001@compulab.co.il> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Mike Rapoport Cc: linux-omap@vger.kernel.org, broonie@opensource.wolfsonmicro.com, alsa-devel@alsa-project.org, steve@sakoman.com On Mon, 2009-11-16 at 16:19 +0200, Mike Rapoport wrote: > >From 4f3628ff75bdeb57e751622f2a92e223f68e81e3 Mon Sep 17 00:00:00 2001 > In-Reply-To: <1258380019.3570.113.camel@odin> > References: <1258380019.3570.113.camel@odin> > From: Mike Rapoport > Date: Mon, 16 Nov 2009 15:35:00 +0200 > Subject: [PATCH] ASoC: OMAP: enable Overo driver for CM-T35 > > Signed-off-by: Mike Rapoport > --- > sound/soc/omap/Kconfig | 7 ++++--- > sound/soc/omap/overo.c | 4 ++-- > 2 files changed, 6 insertions(+), 5 deletions(-) > > diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig > index 653a362..bb42681 100644 > --- a/sound/soc/omap/Kconfig > +++ b/sound/soc/omap/Kconfig > @@ -43,12 +43,13 @@ config SND_OMAP_SOC_OSK5912 > Say Y if you want to add support for SoC audio on osk5912. > > config SND_OMAP_SOC_OVERO > - tristate "SoC Audio support for Gumstix Overo" > - depends on TWL4030_CORE && SND_OMAP_SOC && MACH_OVERO > + tristate "SoC Audio support for Gumstix Overo and CompuLab CM-T35" > + depends on TWL4030_CORE && SND_OMAP_SOC && (MACH_OVERO || MACH_CM_T35) > select SND_OMAP_SOC_MCBSP > select SND_SOC_TWL4030 > help > - Say Y if you want to add support for SoC audio on the Gumstix Overo. > + Say Y if you want to add support for SoC audio on the > + Gumstix Overo or CompuLab CM-T35 > > config SND_OMAP_SOC_OMAP2EVM > tristate "SoC Audio support for OMAP2EVM board" > diff --git a/sound/soc/omap/overo.c b/sound/soc/omap/overo.c > index 624f40e..c25f527 100644 > --- a/sound/soc/omap/overo.c > +++ b/sound/soc/omap/overo.c > @@ -107,8 +107,8 @@ static int __init overo_soc_init(void) > { > int ret; > > - if (!machine_is_overo()) { > - pr_debug("Not Overo!\n"); > + if (!(machine_is_overo() || machine_is_cm_t35())) { > + pr_debug("Incomatible machine!\n"); > return -ENODEV; > } > printk(KERN_INFO "overo SoC init\n"); > -- > 1.6.4.4 > Acked-by: Liam Girdwood Thanks Liam