From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [RFC 11/11] ASoC: hda - enable ASoC Skylake HD audio driver Date: Mon, 13 Apr 2015 14:01:04 +0200 Message-ID: References: <1428842178-7105-1-git-send-email-subhransu.s.prusty@intel.com> <1428842178-7105-12-git-send-email-subhransu.s.prusty@intel.com> 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 (cantor2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 72CFB261AF7 for ; Mon, 13 Apr 2015 14:01:04 +0200 (CEST) In-Reply-To: <1428842178-7105-12-git-send-email-subhransu.s.prusty@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: "Subhransu S. Prusty" Cc: alsa-devel@alsa-project.org, patches.audio@intel.com, lgirdwood@gmail.com, Vinod Koul , broonie@kernel.org, Jeeja KP List-Id: alsa-devel@alsa-project.org At Sun, 12 Apr 2015 18:06:18 +0530, Subhransu S. Prusty wrote: > > From: Jeeja KP > > Add makefile and Kconfig to enable Skylake > HD audio driver > > Signed-off-by: Jeeja KP > Signed-off-by: Subhransu S. Prusty > Signed-off-by: Vinod Koul > --- > sound/soc/Kconfig | 3 ++- > sound/soc/Makefile | 1 + > sound/soc/hda/Kconfig | 29 +++++++++++++++++++++++++++++ > sound/soc/hda/Makefile | 6 ++++++ > 4 files changed, 38 insertions(+), 1 deletion(-) > create mode 100644 sound/soc/hda/Kconfig > create mode 100644 sound/soc/hda/Makefile > > diff --git a/sound/soc/Kconfig b/sound/soc/Kconfig > index dcc79aa..1baa2a4 100644 > --- a/sound/soc/Kconfig > +++ b/sound/soc/Kconfig > @@ -14,7 +14,7 @@ menuconfig SND_SOC > > If you want ASoC support, you should say Y here and also to the > specific driver for your SoC platform below. > - > + > ASoC provides power efficient ALSA support for embedded battery powered > SoC based systems like PDA's, Phones and Personal Media Players. > > @@ -40,6 +40,7 @@ source "sound/soc/cirrus/Kconfig" > source "sound/soc/davinci/Kconfig" > source "sound/soc/dwc/Kconfig" > source "sound/soc/fsl/Kconfig" > +source "sound/soc/hda/Kconfig" > source "sound/soc/jz4740/Kconfig" > source "sound/soc/nuc900/Kconfig" > source "sound/soc/omap/Kconfig" > diff --git a/sound/soc/Makefile b/sound/soc/Makefile > index 5b3c8f6..3269d19 100644 > --- a/sound/soc/Makefile > +++ b/sound/soc/Makefile > @@ -21,6 +21,7 @@ obj-$(CONFIG_SND_SOC) += cirrus/ > obj-$(CONFIG_SND_SOC) += davinci/ > obj-$(CONFIG_SND_SOC) += dwc/ > obj-$(CONFIG_SND_SOC) += fsl/ > +obj-$(CONFIG_SND_SOC) += hda/ > obj-$(CONFIG_SND_SOC) += jz4740/ > obj-$(CONFIG_SND_SOC) += intel/ > obj-$(CONFIG_SND_SOC) += mxs/ > diff --git a/sound/soc/hda/Kconfig b/sound/soc/hda/Kconfig > new file mode 100644 > index 0000000..1711126 > --- /dev/null > +++ b/sound/soc/hda/Kconfig > @@ -0,0 +1,29 @@ > +menu "SKL-HD-Audio" > + > +config SND_SOC_HDA > + tristate > + select SND_HDA_CORE > + > +if SND_SOC_HDA > + > +config SND_HDA_PREALLOC_SIZE The symbol conflicts. Takashi