mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
1b99d50b97
Skylake is dependent on SND_SOC_INTEL_SKYLAKE (aka "all SST platforms")
whereas selecting specific configuration such as KBL-only will not
cause driver code to compile. Switch to SND_SOC_INTEL_SKYLAKE_COMMON
dependency so selecting any configuration causes the driver to be built.
Reported-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
Suggested-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Fixes: 35bc99aaa1
("ASoC: Intel: Skylake: Add more platform granularity")
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Link: https://lore.kernel.org/r/20210125115441.10383-1-cezary.rojewski@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
13 lines
358 B
Makefile
13 lines
358 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Core support
|
|
obj-$(CONFIG_SND_SOC) += common/
|
|
|
|
# Platform Support
|
|
obj-$(CONFIG_SND_SST_ATOM_HIFI2_PLATFORM) += atom/
|
|
obj-$(CONFIG_SND_SOC_INTEL_CATPT) += catpt/
|
|
obj-$(CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON) += skylake/
|
|
obj-$(CONFIG_SND_SOC_INTEL_KEEMBAY) += keembay/
|
|
|
|
# Machine support
|
|
obj-$(CONFIG_SND_SOC) += boards/
|