On 4/26/22 06:54, Amadeusz Sławiński wrote: > Apparently the assumption that driver can build without ACPI was too > optimistic as avs selects SND_SOC_ACPI which requires working ACPI > implementation. So depend on ACPI without COMPILE_TEST alternative. > > Fixes: 47a1886a610a ("ASoC: Intel: avs: Enable AVS driver only on x86 platforms") > Reported-by: kernel test robot <lkp@xxxxxxxxx> > Reviewed-by: Cezary Rojewski <cezary.rojewski@xxxxxxxxx> > Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@xxxxxxxxxxxxxxx> > --- > sound/soc/intel/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig > index be42c4eff165..9fdd6e32951f 100644 > --- a/sound/soc/intel/Kconfig > +++ b/sound/soc/intel/Kconfig > @@ -211,8 +211,8 @@ config SND_SOC_INTEL_KEEMBAY > > config SND_SOC_INTEL_AVS > tristate "Intel AVS driver" > - depends on (X86 && ACPI) || COMPILE_TEST > - depends on PCI > + depends on X86 || COMPILE_TEST > + depends on PCI && ACPI > depends on COMMON_CLK > select SND_SOC_ACPI select SND_SOC_ACPI if ACPI should work, that's what we do for SOF. > select SND_SOC_TOPOLOGY