Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56b39b6a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge changes Ic20c893a,Id7756312,I48359c60,I5532d274,Ia57f335b,I7b28de37 into...

Merge changes Ic20c893a,Id7756312,I48359c60,I5532d274,Ia57f335b,I7b28de37 into audio-drivers.lnx.2.0

* changes:
  ASoC: codecs: Initialized vtable to reference to vport I2S check table.
  autoconf: Enable config support for apq8009 audio.
  ASoC: wcd9335: Add support for Microphone Activity Detection
  ASoC: apq8009: add changes to enable lpass_mclk for apq8009
  AS0C: Add afe_loopback_tx support for apq8009 BE dai
  ASoC: msm: Add machine driver and ext sound card for apq8909 target
parents 46f0b23f a1edfcf1
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -100,6 +100,11 @@ ifdef CONFIG_SND_SOC_MACHINE_SDXPOORWILLS
	MACHINE_OBJS += sdxpoorwills.o
endif

# for APQ8009 external codec sound card driver
ifdef CONFIG_SND_SOC_EXT_CODEC_8909
	MACHINE_EXT_OBJS += apq8009-i2s-ext-codec.o
endif

# for SDM450 internal codec sound card driver
ifdef CONFIG_SND_SOC_SDM450
	MACHINE_OBJS += msm8952.o
@@ -204,6 +209,9 @@ platform_dlkm-y := $(PLATFORM_OBJS)
obj-$(CONFIG_SND_SOC_SDM450) += machine_dlkm.o
machine_dlkm-y := $(MACHINE_OBJS)

obj-$(CONFIG_SND_SOC_EXT_CODEC_8909) += machine_ext_dlkm.o
machine_ext_dlkm-y := $(MACHINE_EXT_OBJS)

obj-$(CONFIG_SND_SOC_EXT_CODEC_SDM450) += machine_ext_dlkm.o
machine_ext_dlkm-y := $(MACHINE_EXT_OBJS)

Loading