From patchwork Thu May 21 09:07:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 6453531 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1A6899F1CC for ; Thu, 21 May 2015 09:08:09 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CD72B202A1 for ; Thu, 21 May 2015 09:08:04 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id CC14C202AE for ; Thu, 21 May 2015 09:08:03 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 2B2A9265707; Thu, 21 May 2015 11:08:02 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,NO_DNS_FOR_FROM, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id EBF75265474; Thu, 21 May 2015 11:07:54 +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 1ABDE265483; Thu, 21 May 2015 11:07:53 +0200 (CEST) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.131]) by alsa0.perex.cz (Postfix) with ESMTP id 09D2F2619E9 for ; Thu, 21 May 2015 11:07:45 +0200 (CEST) Received: from wuerfel.localnet ([149.172.15.242]) by mrelayeu.kundenserver.de (mreue004) with ESMTPSA (Nemesis) id 0La0Ij-1ZZcri366v-00lpGd; Thu, 21 May 2015 11:07:11 +0200 From: Arnd Bergmann To: broonie@kernel.org, lgirdwood@gmail.com Date: Thu, 21 May 2015 11:07:08 +0200 Message-ID: <2324031.cqS0mEEEhQ@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) MIME-Version: 1.0 X-Provags-ID: V03:K0:1LdlB0vKe7Ctka7Gr/dAfMpXbXbt1uyLXlfQURoxd0Ak/oTvUek 6lPryPeWXEhnx0LHEXI+gzVkdmRnoE0IIzjDZkACupbjS7td4iIDHLvSJYV5sAwyfqNMamE l4o4Y/mTHWV+ZJ21q7IUTe7jlkadTmVlRnIHeMVqU9D+8V0QrAWp+MkWnqhi6tFxT75zEVr Z/NT8QlgIw1pZRcW8ezKA== X-UI-Out-Filterresults: notjunk:1; Cc: linux-arm-msm@vger.kernel.org, alsa-devel@alsa-project.org, Banajit Goswami , Kenneth Westfield , linux-arm-kernel@lists.infradead.org Subject: [alsa-devel] [PATCH] ASoC: qcom: remove incorrect dependencies 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: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Compile-tests show a warning for the newly added SND_SOC_STORM symbol: warning: (SND_SOC_STORM) selects SND_SOC_LPASS_CPU which has unmet direct dependencies (SOUND && !M68K && !UML && SND && SND_SOC && SND_SOC_QCOM) The problem is that it can be selected for COMPILE_TEST on non-QCOM builds, but the symbols it selects have a dependency. Dropping the dependencies makes it work without warnings and no other side-effects, because these are not user-visible. Signed-off-by: Arnd Bergmann Fixes: f380dd3f3cd ("ASoC: qcom: Add ability to build QCOM drivers") diff --git a/sound/soc/qcom/Kconfig b/sound/soc/qcom/Kconfig index 5f58e4f1bca9..b07f183fc47f 100644 --- a/sound/soc/qcom/Kconfig +++ b/sound/soc/qcom/Kconfig @@ -6,12 +6,10 @@ config SND_SOC_QCOM config SND_SOC_LPASS_CPU tristate - depends on SND_SOC_QCOM select REGMAP_MMIO config SND_SOC_LPASS_PLATFORM tristate - depends on SND_SOC_QCOM select REGMAP_MMIO config SND_SOC_STORM