Re: linux-next: Tree for Dec 13 (SND_AMD_ACP_CONFIG)
On 12/13/21 19:02, broonie@kernel.org wrote:
Hi all,
Non-merge commits (relative to Linus' tree): 5960 6555 files changed, 277265 insertions(+), 120864 deletions(-)
on i386 or x86_64:
when # CONFIG_ACPI is not set, so SND_SOC_ACPI is not set:
WARNING: unmet direct dependencies detected for SND_AMD_ACP_CONFIG Depends on [n]: SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && SND_SOC_ACPI [=n] Selected by [y]: - SND_SOC_AMD_ACP_COMMON [=y] && SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && X86 [=y] && PCI [=y]
Full randconfig file is attached
on i386 or x86_64:
when # CONFIG_ACPI is not set, so SND_SOC_ACPI is not set:
WARNING: unmet direct dependencies detected for SND_AMD_ACP_CONFIG Depends on [n]: SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && SND_SOC_ACPI [=n] Selected by [y]:
- SND_SOC_AMD_ACP_COMMON [=y] && SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && X86 [=y] && PCI [=y]
Full randconfig file is attached
It's probably triggered by my recent change to fix another problem.
d9b994cd7641 ASoC: AMD: acp-config: fix missing dependency on SND_SOC_ACPI
I didn't realize SND_AMD_ACP_CONFIG was selected by other configs. Moving to a select seems to fix the issue reported by Randy, not sure if it's the right thing to do though.
diff --git a/sound/soc/amd/Kconfig b/sound/soc/amd/Kconfig index bcfeb3fc2592..7a9e45094f37 100644 --- a/sound/soc/amd/Kconfig +++ b/sound/soc/amd/Kconfig @@ -98,7 +98,7 @@ config SND_SOC_AMD_YC_MACH
config SND_AMD_ACP_CONFIG tristate "AMD ACP configuration selection" - depends on SND_SOC_ACPI + select SND_SOC_ACPI if ACPI help This option adds an auto detection to determine which ACP driver modules to use
Hi--
On 12/14/21 05:51, Pierre-Louis Bossart wrote:
on i386 or x86_64:
when # CONFIG_ACPI is not set, so SND_SOC_ACPI is not set:
WARNING: unmet direct dependencies detected for SND_AMD_ACP_CONFIG Depends on [n]: SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && SND_SOC_ACPI [=n] Selected by [y]:
- SND_SOC_AMD_ACP_COMMON [=y] && SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && X86 [=y] && PCI [=y]
Full randconfig file is attached
It's probably triggered by my recent change to fix another problem.
d9b994cd7641 ASoC: AMD: acp-config: fix missing dependency on SND_SOC_ACPI
I didn't realize SND_AMD_ACP_CONFIG was selected by other configs. Moving to a select seems to fix the issue reported by Randy, not sure if it's the right thing to do though.
That works. You can add my Ack if you want to push this patch. Thanks.
Acked-by: Randy Dunlap rdunlap@infradead.org # build-tested
diff --git a/sound/soc/amd/Kconfig b/sound/soc/amd/Kconfig index bcfeb3fc2592..7a9e45094f37 100644 --- a/sound/soc/amd/Kconfig +++ b/sound/soc/amd/Kconfig @@ -98,7 +98,7 @@ config SND_SOC_AMD_YC_MACH
config SND_AMD_ACP_CONFIG tristate "AMD ACP configuration selection"
depends on SND_SOC_ACPI
select SND_SOC_ACPI if ACPI help This option adds an auto detection to determine which ACP driver modules to use
Hi Randy,
This should be fixed by https://github.com/thesofproject/linux/pull/3284
Let me quickly send this to alsa-devel.
On Tue, Dec 14, 2021 at 12:08 PM Randy Dunlap rdunlap@infradead.org wrote:
On 12/13/21 19:02, broonie@kernel.org wrote:
Hi all,
Non-merge commits (relative to Linus' tree): 5960 6555 files changed, 277265 insertions(+), 120864 deletions(-)
on i386 or x86_64:
when # CONFIG_ACPI is not set, so SND_SOC_ACPI is not set:
WARNING: unmet direct dependencies detected for SND_AMD_ACP_CONFIG Depends on [n]: SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && SND_SOC_ACPI [=n] Selected by [y]:
- SND_SOC_AMD_ACP_COMMON [=y] && SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && X86 [=y] && PCI [=y]
Full randconfig file is attached
-- ~Randy
On 12/14/21 11:21 AM, Daniel Baluta wrote:
Hi Randy,
This should be fixed by https://github.com/thesofproject/linux/pull/3284
no, this was precisely the change that exposed a new problem.
https://github.com/thesofproject/linux/pull/3335 contains the suggested fix posted earlier. We should know tomorrow if the 0day bot finds any other issues.
Let me quickly send this to alsa-devel.
On Tue, Dec 14, 2021 at 12:08 PM Randy Dunlap rdunlap@infradead.org wrote:
On 12/13/21 19:02, broonie@kernel.org wrote:
Hi all,
Non-merge commits (relative to Linus' tree): 5960 6555 files changed, 277265 insertions(+), 120864 deletions(-)
on i386 or x86_64:
when # CONFIG_ACPI is not set, so SND_SOC_ACPI is not set:
WARNING: unmet direct dependencies detected for SND_AMD_ACP_CONFIG Depends on [n]: SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && SND_SOC_ACPI [=n] Selected by [y]:
- SND_SOC_AMD_ACP_COMMON [=y] && SOUND [=y] && !UML && SND [=y] && SND_SOC [=y] && X86 [=y] && PCI [=y]
Full randconfig file is attached
-- ~Randy
On Tue, Dec 14, 2021 at 7:26 PM Pierre-Louis Bossart pierre-louis.bossart@linux.intel.com wrote:
On 12/14/21 11:21 AM, Daniel Baluta wrote:
Hi Randy,
This should be fixed by https://github.com/thesofproject/linux/pull/3284
no, this was precisely the change that exposed a new problem.
https://github.com/thesofproject/linux/pull/3335 contains the suggested fix posted earlier. We should know tomorrow if the 0day bot finds any other issues.
Let me quickly send this to alsa-devel.
Thanks Pierre. I have seen your PR now!
participants (3)
-
Daniel Baluta
-
Pierre-Louis Bossart
-
Randy Dunlap