From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: AUDIO: Split WM8750 IO routines from core for SPI Date: Mon, 23 Jun 2008 14:28:36 +0200 Message-ID: References: <20080623115406.920274505@fluff.org.uk> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx2.suse.de (ns2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id D4DDA248AA for ; Mon, 23 Jun 2008 14:28:36 +0200 (CEST) In-Reply-To: <20080623115406.920274505@fluff.org.uk> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@alsa-project.org Errors-To: alsa-devel-bounces@alsa-project.org To: Ben Dooks Cc: alsa-devel@alsa-project.org, Ben Dooks List-Id: alsa-devel@alsa-project.org At Mon, 23 Jun 2008 12:54:07 +0100, Ben Dooks wrote: > > Add SPI support to the WM8750 ASoC codec by splitting > the I2C out of the WM8750 codec and adding an standard > SPI driver to the system. > > Signed-off-by: Ben Dooks > > Index: linux-2.6.26-rc4-quilt3/sound/soc/codecs/Kconfig > =================================================================== > --- linux-2.6.26-rc4-quilt3.orig/sound/soc/codecs/Kconfig 2008-05-26 23:17:51.000000000 +0100 > +++ linux-2.6.26-rc4-quilt3/sound/soc/codecs/Kconfig 2008-06-02 15:26:21.000000000 +0100 > @@ -10,6 +10,16 @@ config SND_SOC_WM8750 > tristate > depends on SND_SOC > > +config SND_SOC_WM8750_I2C > + tristate > + select SND_SOC_WM8750 > + depends on SND_SOC && (CONFIG_I2C || CONFIG_I2C_MODULE) This is wrong in Kconfig. Should be depends on SND_SOC && CONFIG_I2C > --- /dev/null 1970-01-01 00:00:00.000000000 +0000 > +++ linux-2.6.26-rc4-quilt3/sound/soc/codecs/wm8750-i2c.c 2008-06-02 15:42:19.000000000 +0100 > +#include This header file is obsoleted. Takashi