aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/davinci/edma-pcm.h
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2014-07-16 15:12:03 +0300
committerMark Brown <broonie@linaro.org>2014-07-16 22:09:08 +0100
commite8ffacee0adacc1a1312a14acb123544cd4094b9 (patch)
tree48884b87b841abcacbfddccc16a203947b6e01fd /sound/soc/davinci/edma-pcm.h
parentASoC: edma-pcm: Remove PCM_INFO_BATCH and add PCM_INFO_NO_PERIOD_WAKEUP flag (diff)
downloadwireguard-linux-e8ffacee0adacc1a1312a14acb123544cd4094b9.tar.xz
wireguard-linux-e8ffacee0adacc1a1312a14acb123544cd4094b9.zip
ASoC: edma-pcm: Add empty functions for !CONFIG_SND_EDMA_SOC builds
So drivers mixing with other platform drivers, like davinci-mcasp do not need to fiddle with CONFIG_SND_EDMA_SOC in their code. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Tested-by: Daniel Mack <daniel@zonque.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/davinci/edma-pcm.h')
-rw-r--r--sound/soc/davinci/edma-pcm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/davinci/edma-pcm.h b/sound/soc/davinci/edma-pcm.h
index 894c378c0f74..b0957744851c 100644
--- a/sound/soc/davinci/edma-pcm.h
+++ b/sound/soc/davinci/edma-pcm.h
@@ -20,6 +20,13 @@
#ifndef __EDMA_PCM_H__
#define __EDMA_PCM_H__
+#if IS_ENABLED(CONFIG_SND_EDMA_SOC)
int edma_pcm_platform_register(struct device *dev);
+#else
+static inline int edma_pcm_platform_register(struct device *dev)
+{
+ return 0;
+}
+#endif /* CONFIG_SND_EDMA_SOC */
#endif /* __EDMA_PCM_H__ */