mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
b5dd60fd26
Most of the ASoC s6000 code is architecture independent. This patch makes it possible to select the platform when COMPILE_TEST is enabled. The only architecture dependent code is the PCM driver which will still only be selected if XTENSA_VARIANT_S6000 is enabled. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
12 lines
325 B
Makefile
12 lines
325 B
Makefile
# s6000 Platform Support
|
|
snd-soc-s6000-objs := s6000-pcm.o
|
|
snd-soc-s6000-i2s-objs := s6000-i2s.o
|
|
|
|
obj-$(CONFIG_SND_S6000_SOC_PCM) += snd-soc-s6000.o
|
|
obj-$(CONFIG_SND_S6000_SOC_I2S) += snd-soc-s6000-i2s.o
|
|
|
|
# s6105 Machine Support
|
|
snd-soc-s6ipcam-objs := s6105-ipcam.o
|
|
|
|
obj-$(CONFIG_SND_S6000_SOC_S6IPCAM) += snd-soc-s6ipcam.o
|