mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
8a2cd6180f
This patch adds a jack reporting interface to ASoC. This wraps the ALSA core jack detection functionality and provides integration with DAPM to automatically update the power state of pins based on the jack state. Since embedded platforms can have multiple detecton methods used for a single jack (eg, separate microphone and headphone detection) the report function allows specification of which bits are being updated on a given report. The expected usage is that machine drivers will create jack objects and then configure jack detection methods to update that jack. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
14 lines
414 B
Makefile
14 lines
414 B
Makefile
snd-soc-core-objs := soc-core.o soc-dapm.o soc-jack.o
|
|
|
|
obj-$(CONFIG_SND_SOC) += snd-soc-core.o
|
|
obj-$(CONFIG_SND_SOC) += codecs/
|
|
obj-$(CONFIG_SND_SOC) += atmel/
|
|
obj-$(CONFIG_SND_SOC) += au1x/
|
|
obj-$(CONFIG_SND_SOC) += blackfin/
|
|
obj-$(CONFIG_SND_SOC) += davinci/
|
|
obj-$(CONFIG_SND_SOC) += fsl/
|
|
obj-$(CONFIG_SND_SOC) += omap/
|
|
obj-$(CONFIG_SND_SOC) += pxa/
|
|
obj-$(CONFIG_SND_SOC) += s3c24xx/
|
|
obj-$(CONFIG_SND_SOC) += sh/
|