summaryrefslogtreecommitdiffstats
path: root/sound/soc/uniphier/aio-dma.c
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2018-02-13 02:02:39 +0000
committerMark Brown <broonie@kernel.org>2018-02-13 12:30:50 +0000
commit2b5803b95977d60f6e3c88672969b1da024fc3e8 (patch)
treeef53bd3bc1fb2b13dd11d8e60780b466ce317657 /sound/soc/uniphier/aio-dma.c
parentd732d89b154af23946180bf785b7b0ec42275b49 (diff)
downloadlinux-2b5803b95977d60f6e3c88672969b1da024fc3e8.tar.bz2
ASoC: uniphier: aio-dma: replace platform to component
Now platform can be replaced to component, let's do it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Tested-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/uniphier/aio-dma.c')
-rw-r--r--sound/soc/uniphier/aio-dma.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/uniphier/aio-dma.c b/sound/soc/uniphier/aio-dma.c
index 22f122a42442..ef7bafa8e171 100644
--- a/sound/soc/uniphier/aio-dma.c
+++ b/sound/soc/uniphier/aio-dma.c
@@ -259,7 +259,7 @@ static void uniphier_aiodma_free(struct snd_pcm *pcm)
snd_pcm_lib_preallocate_free_for_all(pcm);
}
-static const struct snd_soc_platform_driver uniphier_soc_platform = {
+static const struct snd_soc_component_driver uniphier_soc_platform = {
.pcm_new = uniphier_aiodma_new,
.pcm_free = uniphier_aiodma_free,
.ops = &uniphier_aiodma_ops,
@@ -313,6 +313,7 @@ int uniphier_aiodma_soc_register_platform(struct platform_device *pdev)
if (ret)
return ret;
- return devm_snd_soc_register_platform(dev, &uniphier_soc_platform);
+ return devm_snd_soc_register_component(dev, &uniphier_soc_platform,
+ NULL, 0);
}
EXPORT_SYMBOL_GPL(uniphier_aiodma_soc_register_platform);