20dd9e5ed6
Due to a broken make rule, sound/soc/fsl/imx-pcm-dma.c or sound/soc/fsl/imx-pcm-fiq.c (whatever is selected via Kconfig) will not be compiled into imx-pcm.o when building as module, i.e.: CONFIG_SND_SOC_IMX_PCM=m CONFIG_SND_SOC_IMX_PCM_DMA=m resulting in a non-functional sound driver. This gives the error messages: | imx-sgtl5000 sound.1: platform imx-pcm-audio not registered | imx-sgtl5000 sound.1: snd_soc_register_card failed (-517) | platform sound.1: Driver imx-sgtl5000 requests probe deferral when loading the driver instead of what's to be expected: | imx-sgtl5000 sound.1: sgtl5000 <-> 63fcc000.ssi mapping ok Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
56 lines
2.0 KiB
Makefile
56 lines
2.0 KiB
Makefile
# MPC8610 HPCD Machine Support
|
|
snd-soc-mpc8610-hpcd-objs := mpc8610_hpcd.o
|
|
obj-$(CONFIG_SND_SOC_MPC8610_HPCD) += snd-soc-mpc8610-hpcd.o
|
|
|
|
# P1022 DS Machine Support
|
|
snd-soc-p1022-ds-objs := p1022_ds.o
|
|
obj-$(CONFIG_SND_SOC_P1022_DS) += snd-soc-p1022-ds.o
|
|
|
|
# Freescale PowerPC SSI/DMA Platform Support
|
|
snd-soc-fsl-ssi-objs := fsl_ssi.o
|
|
snd-soc-fsl-utils-objs := fsl_utils.o
|
|
snd-soc-fsl-dma-objs := fsl_dma.o
|
|
obj-$(CONFIG_SND_SOC_FSL_SSI) += snd-soc-fsl-ssi.o
|
|
obj-$(CONFIG_SND_SOC_FSL_UTILS) += snd-soc-fsl-utils.o
|
|
obj-$(CONFIG_SND_SOC_POWERPC_DMA) += snd-soc-fsl-dma.o
|
|
|
|
# MPC5200 Platform Support
|
|
obj-$(CONFIG_SND_MPC52xx_DMA) += mpc5200_dma.o
|
|
obj-$(CONFIG_SND_SOC_MPC5200_I2S) += mpc5200_psc_i2s.o
|
|
obj-$(CONFIG_SND_SOC_MPC5200_AC97) += mpc5200_psc_ac97.o
|
|
|
|
# MPC5200 Machine Support
|
|
obj-$(CONFIG_SND_MPC52xx_SOC_PCM030) += pcm030-audio-fabric.o
|
|
obj-$(CONFIG_SND_MPC52xx_SOC_EFIKA) += efika-audio-fabric.o
|
|
|
|
# i.MX Platform Support
|
|
snd-soc-imx-ssi-objs := imx-ssi.o
|
|
snd-soc-imx-audmux-objs := imx-audmux.o
|
|
snd-soc-imx-pcm-objs := imx-pcm.o
|
|
ifneq ($(CONFIG_SND_SOC_IMX_PCM_FIQ),)
|
|
snd-soc-imx-pcm-objs += imx-pcm-fiq.o
|
|
endif
|
|
ifneq ($(CONFIG_SND_SOC_IMX_PCM_DMA),)
|
|
snd-soc-imx-pcm-objs += imx-pcm-dma.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SND_SOC_IMX_SSI) += snd-soc-imx-ssi.o
|
|
obj-$(CONFIG_SND_SOC_IMX_AUDMUX) += snd-soc-imx-audmux.o
|
|
|
|
obj-$(CONFIG_SND_SOC_IMX_PCM) += snd-soc-imx-pcm.o
|
|
|
|
# i.MX Machine Support
|
|
snd-soc-eukrea-tlv320-objs := eukrea-tlv320.o
|
|
snd-soc-phycore-ac97-objs := phycore-ac97.o
|
|
snd-soc-mx27vis-aic32x4-objs := mx27vis-aic32x4.o
|
|
snd-soc-wm1133-ev1-objs := wm1133-ev1.o
|
|
snd-soc-imx-sgtl5000-objs := imx-sgtl5000.o
|
|
snd-soc-imx-mc13783-objs := imx-mc13783.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_SOC_MX27VIS_AIC32X4) += snd-soc-mx27vis-aic32x4.o
|
|
obj-$(CONFIG_SND_MXC_SOC_WM1133_EV1) += snd-soc-wm1133-ev1.o
|
|
obj-$(CONFIG_SND_SOC_IMX_SGTL5000) += snd-soc-imx-sgtl5000.o
|
|
obj-$(CONFIG_SND_SOC_IMX_MC13783) += snd-soc-imx-mc13783.o
|