mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
75d91f9bc6
Change the Kconfig and Makefile options for Freescale MPC8610 audio drivers so that they can be compiled as modules, and simplify the Kconfig choices so that only the platform is selected. Also fix the naming of the driver files to conform to ALSA standards. [Removed extraneous SND_SOC dependency -- broonie] Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
15 lines
486 B
Makefile
15 lines
486 B
Makefile
# Simple machine driver that extracts configuration from the OF device tree
|
|
obj-$(CONFIG_SND_SOC_OF_SIMPLE) += soc-of-simple.o
|
|
|
|
# MPC8610 HPCD Machine Support
|
|
snd-soc-mpc8610-hpcd-objs := mpc8610_hpcd.o
|
|
obj-$(CONFIG_SND_SOC_MPC8610_HPCD) += snd-soc-mpc8610-hpcd.o
|
|
|
|
# MPC8610 Platform Support
|
|
snd-soc-fsl-ssi-objs := fsl_ssi.o
|
|
snd-soc-fsl-dma-objs := fsl_dma.o
|
|
obj-$(CONFIG_SND_SOC_MPC8610) += snd-soc-fsl-ssi.o snd-soc-fsl-dma.o
|
|
|
|
obj-$(CONFIG_SND_SOC_MPC5200_I2S) += mpc5200_psc_i2s.o
|
|
|