From patchwork Tue Apr 18 15:11:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Kocialkowski X-Patchwork-Id: 9686901 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1C5546037F for ; Wed, 19 Apr 2017 06:44:33 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0D9912815E for ; Wed, 19 Apr 2017 06:44:33 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 02736283E2; Wed, 19 Apr 2017 06:44:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 119392815E for ; Wed, 19 Apr 2017 06:44:31 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 07A00266DE1; Wed, 19 Apr 2017 08:43:33 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id DBC77266A9B; Tue, 18 Apr 2017 17:12:42 +0200 (CEST) Received: from gagarine.paulk.fr (gagarine.paulk.fr [109.190.93.129]) by alsa0.perex.cz (Postfix) with ESMTP id D7B92266A8A for ; Tue, 18 Apr 2017 17:12:31 +0200 (CEST) Received: by gagarine.paulk.fr (Postfix, from userid 65534) id DA90020873; Tue, 18 Apr 2017 17:12:30 +0200 (CEST) Received: from localhost.localdomain (collins [192.168.1.129]) by gagarine.paulk.fr (Postfix) with ESMTP id 52B182072E; Tue, 18 Apr 2017 17:12:27 +0200 (CEST) From: Paul Kocialkowski To: alsa-devel@alsa-project.org, linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 18 Apr 2017 17:11:59 +0200 Message-Id: <20170418151159.31843-1-contact@paulk.fr> X-Mailer: git-send-email 2.12.2 X-Mailman-Approved-At: Wed, 19 Apr 2017 08:43:28 +0200 Cc: Alexandre Courbot , Paul Kocialkowski , Stephen Warren , Marcel Ziswiler , Takashi Iwai , Liam Girdwood , Mark Brown , Thierry Reding , Rob Herring Subject: [alsa-devel] [PATCH 3/3] sound: ASoC: tegra: Select tegra30 i2s and ahub for tegra124 SoC X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP This selects the tegra30 i2s and ahub controllers for the tegra124 SoC. These are needed when building without ARCH_TEGRA_3x_SOC set. Signed-off-by: Paul Kocialkowski --- sound/soc/tegra/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/soc/tegra/Kconfig b/sound/soc/tegra/Kconfig index efbe8d4c019e..bcd18d2cf7a7 100644 --- a/sound/soc/tegra/Kconfig +++ b/sound/soc/tegra/Kconfig @@ -46,7 +46,7 @@ config SND_SOC_TEGRA20_SPDIF config SND_SOC_TEGRA30_AHUB tristate - depends on SND_SOC_TEGRA && ARCH_TEGRA_3x_SOC + depends on SND_SOC_TEGRA && (ARCH_TEGRA_3x_SOC || ARCH_TEGRA_124_SOC) help Say Y or M if you want to add support for the Tegra20 AHUB module. You will also need to select the individual machine drivers to @@ -54,7 +54,7 @@ config SND_SOC_TEGRA30_AHUB config SND_SOC_TEGRA30_I2S tristate - depends on SND_SOC_TEGRA && ARCH_TEGRA_3x_SOC + depends on SND_SOC_TEGRA && (ARCH_TEGRA_3x_SOC || ARCH_TEGRA_124_SOC) select SND_SOC_TEGRA30_AHUB help Say Y or M if you want to add support for codecs attached to the @@ -123,7 +123,7 @@ config SND_SOC_TEGRA_MAX98090 tristate "SoC Audio support for Tegra boards using a MAX98090 codec" depends on SND_SOC_TEGRA && I2C && GPIOLIB select SND_SOC_TEGRA20_I2S if ARCH_TEGRA_2x_SOC - select SND_SOC_TEGRA30_I2S if ARCH_TEGRA_3x_SOC + select SND_SOC_TEGRA30_I2S if ARCH_TEGRA_3x_SOC || ARCH_TEGRA_124_SOC select SND_SOC_MAX98090 help Say Y or M here if you want to add support for SoC audio on Tegra