ASoC: Fix build of OMAP sound drivers

There are build errors when building for some of the omap2/3 boards without
enabling sound:

sound/built-in.o:(.data+0x43bc): undefined reference to `soc_codec_dev_tlv320aic23'
sound/built-in.o:(.data+0x43cc): undefined reference to `tlv320aic23_dai'

Confused me quite a bit since the drivers that had references to the
codec weren't enabled. Turns out the Makefile was using the wrong
config option to enable them. Patch below.

Reported-by: Anand Gadiyar <gadiyar@ti.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

authored by

Olof Johansson and committed by
Mark Brown
761c9d45 370066e2

+3 -3
+3 -3
sound/soc/omap/Makefile
··· 23 23 obj-$(CONFIG_SND_OMAP_SOC_AMS_DELTA) += snd-soc-ams-delta.o 24 24 obj-$(CONFIG_SND_OMAP_SOC_OSK5912) += snd-soc-osk5912.o 25 25 obj-$(CONFIG_SND_OMAP_SOC_OVERO) += snd-soc-overo.o 26 - obj-$(CONFIG_MACH_OMAP2EVM) += snd-soc-omap2evm.o 27 - obj-$(CONFIG_MACH_OMAP3EVM) += snd-soc-omap3evm.o 28 - obj-$(CONFIG_MACH_OMAP3517EVM) += snd-soc-am3517evm.o 26 + obj-$(CONFIG_SND_OMAP_SOC_OMAP2EVM) += snd-soc-omap2evm.o 27 + obj-$(CONFIG_SND_OMAP_SOC_OMAP3EVM) += snd-soc-omap3evm.o 28 + obj-$(CONFIG_SND_OMAP_SOC_OMAP3517EVM) += snd-soc-am3517evm.o 29 29 obj-$(CONFIG_SND_OMAP_SOC_SDP3430) += snd-soc-sdp3430.o 30 30 obj-$(CONFIG_SND_OMAP_SOC_OMAP3_PANDORA) += snd-soc-omap3pandora.o 31 31 obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE) += snd-soc-omap3beagle.o