From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 125A2C352A5 for ; Mon, 10 Feb 2020 14:12:03 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 889B920842 for ; Mon, 10 Feb 2020 14:12:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=alsa-project.org header.i=@alsa-project.org header.b="nnsBfk0i" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 889B920842 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=alsa-devel-bounces@alsa-project.org Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 6F08D15F9; Mon, 10 Feb 2020 15:03:20 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 6F08D15F9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1581343450; bh=CO8BbZnLagN+NDqnpjYDzy7c1DvphPrJuFtumwRWpsQ=; h=Date:From:To:References:In-Reply-To:Cc:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=nnsBfk0iM7XsPWJtL6aWrdgJeiTtzKFgllZp5DN97RkksgUkhUlRtWd+IHlc5gwK0 3qRSGbnpTkDOHxHbKcjZEYHXag777pYphqNQhf1iJ283/m7rmLxog9olXs2S2ydXHQ roFR/Efiof/HsVToia/B8mcMlClQDFUzHcityphE= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id E1614F8014F; Mon, 10 Feb 2020 15:03:19 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 604ADF80157; Mon, 10 Feb 2020 15:03:18 +0100 (CET) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by alsa1.perex.cz (Postfix) with ESMTP id 5D0D8F800FD for ; Mon, 10 Feb 2020 15:03:11 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 5D0D8F800FD Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D343F1FB; Mon, 10 Feb 2020 06:03:10 -0800 (PST) Received: from localhost (unknown [10.37.6.21]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 5816E3F68E; Mon, 10 Feb 2020 06:03:10 -0800 (PST) Date: Mon, 10 Feb 2020 14:03:08 +0000 From: Mark Brown To: Geert Uytterhoeven Message-ID: <20200210140308.GN7685@sirena.org.uk> References: <20200207091351.18133-1-geert@linux-m68k.org> MIME-Version: 1.0 In-Reply-To: <20200207091351.18133-1-geert@linux-m68k.org> X-Cookie: Avoid gunfire in the bathroom tonight. User-Agent: Mutt/1.10.1 (2018-07-13) Cc: alsa-devel@alsa-project.org, Liam Girdwood , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Takashi Iwai Subject: Re: [alsa-devel] [PATCH] [RFC] ASoC: Use imply for SND_SOC_ALL_CODECS X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 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: , Content-Type: multipart/mixed; boundary="===============2572348713620724917==" Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" --===============2572348713620724917== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="TXIPBuAs4GDcsx9K" Content-Disposition: inline --TXIPBuAs4GDcsx9K Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 07, 2020 at 10:13:51AM +0100, Geert Uytterhoeven wrote: > Currently SND_SOC_ALL_CODECS selects the config symbols for all codec > drivers. As "select" bypasses dependencies, lots of "select" statements > need explicit dependencies, which are hard to get right, and hard to > maintain[*]. >=20 > Fix this by using "imply" instead, which is a weak version of "select", > and which obeys dependencies of target symbols. This is a *really* badly named feature :/ --TXIPBuAs4GDcsx9K Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAl5BYpwACgkQJNaLcl1U h9AJ6wf+JoGh6XxETeSB4TWntPU4POgBDY7UzyJaSzC/k9dxItOpbvF8sZbh3YVO RqfpWryUL/Icpn8pUC785qgCczDrAzW3YB3tkwvAma8tNK/HA6TC4b5/pl2h0F1e R5gValaXJ4qG0+Q9ZDNlDNmVX06fSlutz4K+UUBAP8DUgrXcQXqo4PhjIptTRix/ GKtNAePn3171ofUgEhfSpVE6I7zZHkcD0IC3CQ5Ss9ui/7YBzRls6qq5HOqEbvDD 4KvKMTM4lDu7u7f+R9ov/N0NEDS2ZtKNfoALHeQTBCplEhIbXSHZ5r0hF4LBAE9r CI47bCrYKahz5DDreklkq0WdmyUZQw== =MBOV -----END PGP SIGNATURE----- --TXIPBuAs4GDcsx9K-- --===============2572348713620724917== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Alsa-devel mailing list Alsa-devel@alsa-project.org https://mailman.alsa-project.org/mailman/listinfo/alsa-devel --===============2572348713620724917==--