Commit ddce03ce authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: dwc-pcm: replace platform to component

Now platform can be replaced to component, let's do it.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 60bceb80
...@@ -269,7 +269,7 @@ static const struct snd_pcm_ops dw_pcm_ops = { ...@@ -269,7 +269,7 @@ static const struct snd_pcm_ops dw_pcm_ops = {
.pointer = dw_pcm_pointer, .pointer = dw_pcm_pointer,
}; };
static const struct snd_soc_platform_driver dw_pcm_platform = { static const struct snd_soc_component_driver dw_pcm_component = {
.pcm_new = dw_pcm_new, .pcm_new = dw_pcm_new,
.pcm_free = dw_pcm_free, .pcm_free = dw_pcm_free,
.ops = &dw_pcm_ops, .ops = &dw_pcm_ops,
...@@ -277,5 +277,6 @@ static const struct snd_soc_platform_driver dw_pcm_platform = { ...@@ -277,5 +277,6 @@ static const struct snd_soc_platform_driver dw_pcm_platform = {
int dw_pcm_register(struct platform_device *pdev) int dw_pcm_register(struct platform_device *pdev)
{ {
return devm_snd_soc_register_platform(&pdev->dev, &dw_pcm_platform); return devm_snd_soc_register_component(&pdev->dev, &dw_pcm_component,
NULL, 0);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment