From: Lars-Peter Clausen <lars@metafoo.de>
To: Takashi Iwai <tiwai@suse.de>,
"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>
Cc: "Fabio.Estevam@freescale.com" <Fabio.Estevam@freescale.com>,
"sfr@canb.auug.org.au" <sfr@canb.auug.org.au>,
"shengjiu.wang@freescale.com" <shengjiu.wang@freescale.com>,
"timur@tabi.org" <timur@tabi.org>,
"arnd@arndb.de" <arnd@arndb.de>,
"shc_work@mail.ru" <shc_work@mail.ru>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
"broonie@kernel.org" <broonie@kernel.org>,
"xobs@kosagi.com" <xobs@kosagi.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>
Subject: Re: [PATCH V1 1/3] ASoC: fsl: Kconfig: remove dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA
Date: Tue, 19 Aug 2014 12:39:33 +0200 [thread overview]
Message-ID: <53F32965.8000302@metafoo.de> (raw)
In-Reply-To: <s5hha184viu.wl-tiwai@suse.de>
On 08/19/2014 12:35 PM, Takashi Iwai wrote:
> At Tue, 19 Aug 2014 09:00:06 +0000,
> Li.Xiubo@freescale.com wrote:
>>
>> How about the following :
>>
>>
>> diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
>> index 5ae777a..d42f18c 100644
>> --- a/sound/soc/fsl/Kconfig
>> +++ b/sound/soc/fsl/Kconfig
>> @@ -15,7 +15,7 @@ config SND_SOC_FSL_ASRC
>> config SND_SOC_FSL_SAI
>> tristate "Synchronous Audio Interface (SAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>> help
>> Say Y if you want to add Synchronous Audio Interface (SAI)
>> @@ -25,7 +25,7 @@ config SND_SOC_FSL_SAI
>>
>> config SND_SOC_FSL_SSI
>> tristate "Synchronous Serial Interface module support"
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> select REGMAP_MMIO
>> help
>> @@ -37,7 +37,7 @@ config SND_SOC_FSL_SSI
>> config SND_SOC_FSL_SPDIF
>> tristate "Sony/Philips Digital Interface module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> help
>> Say Y if you want to add Sony/Philips Digital Interface (SPDIF)
>> @@ -48,7 +48,7 @@ config SND_SOC_FSL_SPDIF
>> config SND_SOC_FSL_ESAI
>> tristate "Enhanced Serial Audio Interface (ESAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> help
>> Say Y if you want to add Enhanced Synchronous Audio Interface
>> (ESAI) support for the Freescale CPUs.
>> @@ -76,6 +76,7 @@ config SND_SOC_FSL_ASOC_CARD
>>
>> config SND_SOC_IMX_PCM_DMA
>> tristate
>> + depends on SND_IMX_SOC
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>>
>> config SND_SOC_IMX_AUDMUX
>
> I see the problem has been addressed, so JFYI: a reverse selection
> doesn't resolve "depends on". It's a known shortcoming. That is, a
> selected item can select further others, but cannot depend on others.
The item will still be selected regardless of its dependencies, but Kconfig
will print a warning if one or more of the dependencies are not met along
with the dependency chain that causes the warning. So you'll have a clue why
things go wrong.
- Lars
WARNING: multiple messages have this Message-ID (diff)
From: Lars-Peter Clausen <lars@metafoo.de>
To: Takashi Iwai <tiwai@suse.de>,
"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>
Cc: "Fabio.Estevam@freescale.com" <Fabio.Estevam@freescale.com>,
"sfr@canb.auug.org.au" <sfr@canb.auug.org.au>,
"shengjiu.wang@freescale.com" <shengjiu.wang@freescale.com>,
"timur@tabi.org" <timur@tabi.org>,
"arnd@arndb.de" <arnd@arndb.de>,
"shc_work@mail.ru" <shc_work@mail.ru>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"perex@perex.cz" <perex@perex.cz>,
"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
"broonie@kernel.org" <broonie@kernel.org>,
"xobs@kosagi.com" <xobs@kosagi.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>
Subject: Re: [alsa-devel] [PATCH V1 1/3] ASoC: fsl: Kconfig: remove dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA
Date: Tue, 19 Aug 2014 12:39:33 +0200 [thread overview]
Message-ID: <53F32965.8000302@metafoo.de> (raw)
In-Reply-To: <s5hha184viu.wl-tiwai@suse.de>
On 08/19/2014 12:35 PM, Takashi Iwai wrote:
> At Tue, 19 Aug 2014 09:00:06 +0000,
> Li.Xiubo@freescale.com wrote:
>>
>> How about the following :
>>
>>
>> diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
>> index 5ae777a..d42f18c 100644
>> --- a/sound/soc/fsl/Kconfig
>> +++ b/sound/soc/fsl/Kconfig
>> @@ -15,7 +15,7 @@ config SND_SOC_FSL_ASRC
>> config SND_SOC_FSL_SAI
>> tristate "Synchronous Audio Interface (SAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>> help
>> Say Y if you want to add Synchronous Audio Interface (SAI)
>> @@ -25,7 +25,7 @@ config SND_SOC_FSL_SAI
>>
>> config SND_SOC_FSL_SSI
>> tristate "Synchronous Serial Interface module support"
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> select REGMAP_MMIO
>> help
>> @@ -37,7 +37,7 @@ config SND_SOC_FSL_SSI
>> config SND_SOC_FSL_SPDIF
>> tristate "Sony/Philips Digital Interface module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> help
>> Say Y if you want to add Sony/Philips Digital Interface (SPDIF)
>> @@ -48,7 +48,7 @@ config SND_SOC_FSL_SPDIF
>> config SND_SOC_FSL_ESAI
>> tristate "Enhanced Serial Audio Interface (ESAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> help
>> Say Y if you want to add Enhanced Synchronous Audio Interface
>> (ESAI) support for the Freescale CPUs.
>> @@ -76,6 +76,7 @@ config SND_SOC_FSL_ASOC_CARD
>>
>> config SND_SOC_IMX_PCM_DMA
>> tristate
>> + depends on SND_IMX_SOC
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>>
>> config SND_SOC_IMX_AUDMUX
>
> I see the problem has been addressed, so JFYI: a reverse selection
> doesn't resolve "depends on". It's a known shortcoming. That is, a
> selected item can select further others, but cannot depend on others.
The item will still be selected regardless of its dependencies, but Kconfig
will print a warning if one or more of the dependencies are not met along
with the dependency chain that causes the warning. So you'll have a clue why
things go wrong.
- Lars
WARNING: multiple messages have this Message-ID (diff)
From: Lars-Peter Clausen <lars@metafoo.de>
To: Takashi Iwai <tiwai@suse.de>,
"Li.Xiubo@freescale.com" <Li.Xiubo@freescale.com>
Cc: "shengjiu.wang@freescale.com" <shengjiu.wang@freescale.com>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"broonie@kernel.org" <broonie@kernel.org>,
"perex@perex.cz" <perex@perex.cz>,
"nicoleotsuka@gmail.com" <nicoleotsuka@gmail.com>,
"shc_work@mail.ru" <shc_work@mail.ru>,
"Fabio.Estevam@freescale.com" <Fabio.Estevam@freescale.com>,
"xobs@kosagi.com" <xobs@kosagi.com>,
"arnd@arndb.de" <arnd@arndb.de>,
"sfr@canb.auug.org.au" <sfr@canb.auug.org.au>,
"timur@tabi.org" <timur@tabi.org>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [alsa-devel] [PATCH V1 1/3] ASoC: fsl: Kconfig: remove dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA
Date: Tue, 19 Aug 2014 12:39:33 +0200 [thread overview]
Message-ID: <53F32965.8000302@metafoo.de> (raw)
In-Reply-To: <s5hha184viu.wl-tiwai@suse.de>
On 08/19/2014 12:35 PM, Takashi Iwai wrote:
> At Tue, 19 Aug 2014 09:00:06 +0000,
> Li.Xiubo@freescale.com wrote:
>>
>> How about the following :
>>
>>
>> diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
>> index 5ae777a..d42f18c 100644
>> --- a/sound/soc/fsl/Kconfig
>> +++ b/sound/soc/fsl/Kconfig
>> @@ -15,7 +15,7 @@ config SND_SOC_FSL_ASRC
>> config SND_SOC_FSL_SAI
>> tristate "Synchronous Audio Interface (SAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>> help
>> Say Y if you want to add Synchronous Audio Interface (SAI)
>> @@ -25,7 +25,7 @@ config SND_SOC_FSL_SAI
>>
>> config SND_SOC_FSL_SSI
>> tristate "Synchronous Serial Interface module support"
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> select REGMAP_MMIO
>> help
>> @@ -37,7 +37,7 @@ config SND_SOC_FSL_SSI
>> config SND_SOC_FSL_SPDIF
>> tristate "Sony/Philips Digital Interface module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
>> help
>> Say Y if you want to add Sony/Philips Digital Interface (SPDIF)
>> @@ -48,7 +48,7 @@ config SND_SOC_FSL_SPDIF
>> config SND_SOC_FSL_ESAI
>> tristate "Enhanced Serial Audio Interface (ESAI) module support"
>> select REGMAP_MMIO
>> - select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
>> + select SND_SOC_IMX_PCM_DMA
>> help
>> Say Y if you want to add Enhanced Synchronous Audio Interface
>> (ESAI) support for the Freescale CPUs.
>> @@ -76,6 +76,7 @@ config SND_SOC_FSL_ASOC_CARD
>>
>> config SND_SOC_IMX_PCM_DMA
>> tristate
>> + depends on SND_IMX_SOC
>> select SND_SOC_GENERIC_DMAENGINE_PCM
>>
>> config SND_SOC_IMX_AUDMUX
>
> I see the problem has been addressed, so JFYI: a reverse selection
> doesn't resolve "depends on". It's a known shortcoming. That is, a
> selected item can select further others, but cannot depend on others.
The item will still be selected regardless of its dependencies, but Kconfig
will print a warning if one or more of the dependencies are not met along
with the dependency chain that causes the warning. So you'll have a clue why
things go wrong.
- Lars
next prev parent reply other threads:[~2014-08-19 10:39 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-18 8:38 [PATCH V1 0/3] fix build error/warning in sound/soc/fsl Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 8:38 ` [PATCH V1 1/3] ASoC: fsl: Kconfig: remove dependence of SND_IMX_SOC for SND_SOC_IMX_PCM_DMA Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 16:52 ` Lars-Peter Clausen
2014-08-18 16:52 ` [alsa-devel] " Lars-Peter Clausen
2014-08-19 7:41 ` Shengjiu Wang
2014-08-19 7:41 ` [alsa-devel] " Shengjiu Wang
2014-08-19 7:41 ` Shengjiu Wang
2014-08-19 8:13 ` Li.Xiubo
2014-08-19 8:13 ` [alsa-devel] " Li.Xiubo
2014-08-19 8:13 ` Li.Xiubo
2014-08-19 8:21 ` Shengjiu Wang
2014-08-19 8:21 ` [alsa-devel] " Shengjiu Wang
2014-08-19 8:21 ` Shengjiu Wang
2014-08-19 8:31 ` Li.Xiubo
2014-08-19 8:31 ` [alsa-devel] " Li.Xiubo
2014-08-19 8:31 ` Li.Xiubo
2014-08-19 9:00 ` Li.Xiubo
2014-08-19 9:00 ` [alsa-devel] " Li.Xiubo
2014-08-19 9:00 ` Li.Xiubo
2014-08-19 9:05 ` shengjiu.wang
2014-08-19 9:05 ` [alsa-devel] " shengjiu.wang
2014-08-19 9:05 ` shengjiu.wang
2014-08-19 10:35 ` Takashi Iwai
2014-08-19 10:35 ` [alsa-devel] " Takashi Iwai
2014-08-19 10:35 ` Takashi Iwai
2014-08-19 10:39 ` Lars-Peter Clausen [this message]
2014-08-19 10:39 ` Lars-Peter Clausen
2014-08-19 10:39 ` Lars-Peter Clausen
2014-08-19 8:36 ` Lars-Peter Clausen
2014-08-19 8:36 ` [alsa-devel] " Lars-Peter Clausen
2014-08-19 8:36 ` Lars-Peter Clausen
2014-08-19 8:45 ` Lars-Peter Clausen
2014-08-19 8:45 ` [alsa-devel] " Lars-Peter Clausen
2014-08-19 8:45 ` Lars-Peter Clausen
2014-08-19 8:55 ` Shengjiu Wang
2014-08-19 8:55 ` [alsa-devel] " Shengjiu Wang
2014-08-19 8:55 ` Shengjiu Wang
2014-08-18 8:38 ` [PATCH V1 2/3] ASoC: fsl-asoc-card: Fix build warning for maybe-uninitialized Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 14:53 ` Mark Brown
2014-08-18 14:53 ` Mark Brown
2014-08-18 14:53 ` Mark Brown
2014-08-18 8:38 ` [PATCH V1 3/3] ASoC: fsl: fsl-asoc-card: Select SND_SOC_IMX_AUDMUX Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 8:38 ` Shengjiu Wang
2014-08-18 14:54 ` Mark Brown
2014-08-18 14:54 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53F32965.8000302@metafoo.de \
--to=lars@metafoo.de \
--cc=Fabio.Estevam@freescale.com \
--cc=Li.Xiubo@freescale.com \
--cc=alsa-devel@alsa-project.org \
--cc=arnd@arndb.de \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=nicoleotsuka@gmail.com \
--cc=sfr@canb.auug.org.au \
--cc=shc_work@mail.ru \
--cc=shengjiu.wang@freescale.com \
--cc=timur@tabi.org \
--cc=tiwai@suse.de \
--cc=xobs@kosagi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.