91157888f2
Add the necessary files to support the TLV320AIC23B wired in I2S on our i.MX platforms. Signed-off-by: Eric Bénard <eric@eukrea.com> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
18 lines
520 B
Makefile
18 lines
520 B
Makefile
# i.MX Platform Support
|
|
snd-soc-imx-objs := imx-ssi.o imx-pcm-fiq.o
|
|
|
|
ifdef CONFIG_MACH_MX27
|
|
snd-soc-imx-objs += imx-pcm-dma-mx2.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SND_IMX_SOC) += snd-soc-imx.o
|
|
|
|
# i.MX Machine Support
|
|
snd-soc-eukrea-tlv320-objs := eukrea-tlv320.o
|
|
snd-soc-phycore-ac97-objs := phycore-ac97.o
|
|
snd-soc-wm1133-ev1-objs := wm1133-ev1.o
|
|
|
|
obj-$(CONFIG_SND_SOC_EUKREA_TLV320) += snd-soc-eukrea-tlv320.o
|
|
obj-$(CONFIG_SND_SOC_PHYCORE_AC97) += snd-soc-phycore-ac97.o
|
|
obj-$(CONFIG_SND_MXC_SOC_WM1133_EV1) += snd-soc-wm1133-ev1.o
|