mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-28 14:44:10 +08:00
221dd96c30
Remove dependencies on HAS_DMA where a Kconfig symbol depends on another symbol that implies HAS_DMA, and, optionally, on "|| COMPILE_TEST". In most cases this other symbol is an architecture or platform specific symbol, or PCI. Generic symbols and drivers without platform dependencies keep their dependencies on HAS_DMA, to prevent compiling subsystems or drivers that cannot work anyway. This simplifies the dependencies, and allows to improve compile-testing. Note: - The various SND_SOC_LPASS_* symbols had to loose their dependencies on HAS_DMA, as they are selected by SND_SOC_STORM and/or SND_SOC_APQ8016_SBC. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Reviewed-by: Mark Brown <broonie@kernel.org> Acked-by: Robin Murphy <robin.murphy@arm.com> Acked-by: Mark Brown <broonie@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
18 lines
607 B
Plaintext
18 lines
607 B
Plaintext
config SND_KIRKWOOD_SOC
|
|
tristate "SoC Audio for the Marvell Kirkwood and Dove chips"
|
|
depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST
|
|
help
|
|
Say Y or M if you want to add support for codecs attached to
|
|
the Kirkwood I2S interface. You will also need to select the
|
|
audio interfaces to support below.
|
|
|
|
config SND_KIRKWOOD_SOC_ARMADA370_DB
|
|
tristate "SoC Audio support for Armada 370 DB"
|
|
depends on SND_KIRKWOOD_SOC && (ARCH_MVEBU || COMPILE_TEST) && I2C
|
|
select SND_SOC_CS42L51
|
|
select SND_SOC_SPDIF
|
|
help
|
|
Say Y if you want to add support for SoC audio on
|
|
the Armada 370 Development Board.
|
|
|