diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2016-06-02 12:59:24 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-02 23:28:15 (GMT) |
commit | 121a01521b1ef7440ea285aa3aae02bf005e5635 (patch) | |
tree | 4a093776231b6fdc6919537a24827df242e8d48d /sound/soc/fsl | |
parent | 6dca83fdee7c45a960018141827c9d4b5b50d0a2 (diff) | |
download | linux-121a01521b1ef7440ea285aa3aae02bf005e5635.tar.xz |
ASoC: fsl: fix build failure
m32r allmodconfig build is failing with the error:
ERROR: "bad_dma_ops" [sound/soc/fsl/snd-soc-fsl-asrc.ko] undefined!
The code is using DMA but the related dependency is not mentioned in the
Kconfig.
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig index 35aabf9..19bdcac 100644 --- a/sound/soc/fsl/Kconfig +++ b/sound/soc/fsl/Kconfig @@ -4,6 +4,7 @@ comment "Common SoC Audio options for Freescale CPUs:" config SND_SOC_FSL_ASRC tristate "Asynchronous Sample Rate Converter (ASRC) module support" + depends on HAS_DMA select REGMAP_MMIO select SND_SOC_GENERIC_DMAENGINE_PCM help |