mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
88eb404ccc
This patch adds Broadcom DSL/PON SoC audio driver with Whistler I2S block. The SoC supported by this patch are BCM63158B0,BCM63178 and BCM47622/6755 Signed-off-by: Kevin Li <kevin-ke.li@broadcom.com> Link: https://lore.kernel.org/r/20200312223242.2843-2-kevin-ke.li@broadcom.com Signed-off-by: Mark Brown <broonie@kernel.org>
15 lines
No EOL
447 B
Makefile
15 lines
No EOL
447 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# BCM2835 Platform Support
|
|
snd-soc-bcm2835-i2s-objs := bcm2835-i2s.o
|
|
|
|
obj-$(CONFIG_SND_BCM2835_SOC_I2S) += snd-soc-bcm2835-i2s.o
|
|
|
|
# CYGNUS Platform Support
|
|
snd-soc-cygnus-objs := cygnus-pcm.o cygnus-ssp.o
|
|
|
|
obj-$(CONFIG_SND_SOC_CYGNUS) += snd-soc-cygnus.o
|
|
|
|
# BCM63XX Platform Support
|
|
snd-soc-63xx-objs := bcm63xx-i2s-whistler.o bcm63xx-pcm-whistler.o
|
|
|
|
obj-$(CONFIG_SND_BCM63XX_I2S_WHISTLER) += snd-soc-63xx.o
|