Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 66bf428e authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: stm: stm32_adfsdm: 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 f1b5bf07
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -281,7 +281,7 @@ static void stm32_adfsdm_pcm_free(struct snd_pcm *pcm)
	}
	}
}
}


static struct snd_soc_platform_driver stm32_adfsdm_soc_platform = {
static struct snd_soc_component_driver stm32_adfsdm_soc_platform = {
	.ops		= &stm32_adfsdm_pcm_ops,
	.ops		= &stm32_adfsdm_pcm_ops,
	.pcm_new	= stm32_adfsdm_pcm_new,
	.pcm_new	= stm32_adfsdm_pcm_new,
	.pcm_free	= stm32_adfsdm_pcm_free,
	.pcm_free	= stm32_adfsdm_pcm_free,
@@ -322,8 +322,9 @@ static int stm32_adfsdm_probe(struct platform_device *pdev)
	if (IS_ERR(priv->iio_cb))
	if (IS_ERR(priv->iio_cb))
		return PTR_ERR(priv->iio_cb);
		return PTR_ERR(priv->iio_cb);


	ret = devm_snd_soc_register_platform(&pdev->dev,
	ret = devm_snd_soc_register_component(&pdev->dev,
					     &stm32_adfsdm_soc_platform);
					      &stm32_adfsdm_soc_platform,
					      NULL, 0);
	if (ret < 0)
	if (ret < 0)
		dev_err(&pdev->dev, "%s: Failed to register PCM platform\n",
		dev_err(&pdev->dev, "%s: Failed to register PCM platform\n",
			__func__);
			__func__);