diff options
author | Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> | 2016-05-23 16:00:54 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-05-23 17:50:51 +0100 |
commit | b01518ca88410195ace38ce755c1206588e5c167 (patch) | |
tree | d676b03d64ef439e93c0fd9fb24ee5e42093a2b8 /sound | |
parent | 29cf67b99527296e9c9b9f6995c1d271d21f79c0 (diff) | |
download | op-kernel-dev-b01518ca88410195ace38ce755c1206588e5c167.zip op-kernel-dev-b01518ca88410195ace38ce755c1206588e5c167.tar.gz |
ASoC: kirkwood: fix build failure
While building m32r allmodconfig the build failed with:
ERROR: "bad_dma_ops" [sound/soc/kirkwood/snd-soc-kirkwood.ko] undefined!
To satisfy the dependency CONFIG_SND_KIRKWOOD_SOC should depend on
HAS_DMA.
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/kirkwood/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/kirkwood/Kconfig b/sound/soc/kirkwood/Kconfig index 132bb83..bc3c7b5 100644 --- a/sound/soc/kirkwood/Kconfig +++ b/sound/soc/kirkwood/Kconfig @@ -1,6 +1,7 @@ config SND_KIRKWOOD_SOC tristate "SoC Audio for the Marvell Kirkwood and Dove chips" depends on ARCH_DOVE || ARCH_MVEBU || COMPILE_TEST + depends on HAS_DMA help Say Y or M if you want to add support for codecs attached to the Kirkwood I2S interface. You will also need to select the |