diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-04-29 19:18:35 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-01 13:31:05 -0700 |
commit | b7a80379aa52d033d2a7c2390c8e80bd027758bf (patch) | |
tree | 94b59fac6795933e2219dbd87f302b0d818fd3a1 /sound/soc/omap | |
parent | 36a26e1a9a2b7e966ea132bfcf778d84af288e51 (diff) | |
download | op-kernel-dev-b7a80379aa52d033d2a7c2390c8e80bd027758bf.zip op-kernel-dev-b7a80379aa52d033d2a7c2390c8e80bd027758bf.tar.gz |
ASoC: omap: Amstrad E3 needs TTY support for codec
The cx20442 codec driver used here requires the TTY layer to
be enabled, or we get a link error:
sound/built-in.o: In function `cx20442_codec_remove':
cx20442.c:398: undefined reference to `tty_hangup'
sound/built-in.o: In function `ams_delta_remove':
ams-delta.c:613: undefined reference to `tty_unregister_ldisc'
sound/built-in.o: In function `ams_delta_cx20442_init':
ams-delta.c:559: undefined reference to `tty_register_ldisc'
This adds the missing dependency in the E3 configuration, there
was already one for the codec.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Xia Kaixu <kaixu.xia@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/omap')
-rw-r--r-- | sound/soc/omap/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index 2796af9..d44463a 100644 --- a/sound/soc/omap/Kconfig +++ b/sound/soc/omap/Kconfig @@ -37,7 +37,7 @@ config SND_OMAP_SOC_RX51 config SND_OMAP_SOC_AMS_DELTA tristate "SoC Audio support for Amstrad E3 (Delta) videophone" - depends on SND_OMAP_SOC && MACH_AMS_DELTA + depends on SND_OMAP_SOC && MACH_AMS_DELTA && TTY select SND_OMAP_SOC_MCBSP select SND_SOC_CX20442 help |