diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-06-30 10:01:38 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-04 18:57:58 +0100 |
commit | b5dd60fd263147f723aeebc424dab7cd6613d3be (patch) | |
tree | 9e37aa2574a32103f2afa492a97f025eaba63d10 /sound/soc/s6000/Kconfig | |
parent | 001eaa25ca8cf4bfdb76fa8f2287b8d34287b9b6 (diff) | |
download | linux-b5dd60fd263147f723aeebc424dab7cd6613d3be.tar.bz2 |
ASoC: s6000: Allow to build when COMPILE_TEST is enabled
Most of the ASoC s6000 code is architecture independent. This patch makes it
possible to select the platform when COMPILE_TEST is enabled.
The only architecture dependent code is the PCM driver which will still only be
selected if XTENSA_VARIANT_S6000 is enabled.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/s6000/Kconfig')
-rw-r--r-- | sound/soc/s6000/Kconfig | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sound/soc/s6000/Kconfig b/sound/soc/s6000/Kconfig index c74eb3d4a47c..4823e1e4daef 100644 --- a/sound/soc/s6000/Kconfig +++ b/sound/soc/s6000/Kconfig @@ -1,17 +1,23 @@ config SND_S6000_SOC tristate "SoC Audio for the Stretch s6000 family" - depends on XTENSA_VARIANT_S6000 + depends on XTENSA_VARIANT_S6000 || COMPILE_TEST + depends on HAS_IOMEM + select SND_S6000_SOC_PCM if XTENSA_VARIANT_S6000 help Say Y or M if you want to add support for codecs attached to s6000 family chips. You will also need to select the platform to support below. +config SND_S6000_SOC_PCM + tristate + config SND_S6000_SOC_I2S tristate config SND_S6000_SOC_S6IPCAM tristate "SoC Audio support for Stretch 6105 IP Camera" - depends on SND_S6000_SOC && XTENSA_PLATFORM_S6105 + depends on SND_S6000_SOC + depends on XTENSA_PLATFORM_S6105 || COMPILE_TEST select SND_S6000_SOC_I2S select SND_SOC_TLV320AIC3X help |