mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
ASoC: soc-utils: 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> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
bbf4d71aa9
commit
2d59ebd3e2
@ -284,7 +284,7 @@ static const struct snd_pcm_ops dummy_dma_ops = {
|
|||||||
.ioctl = snd_pcm_lib_ioctl,
|
.ioctl = snd_pcm_lib_ioctl,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct snd_soc_platform_driver dummy_platform = {
|
static const struct snd_soc_component_driver dummy_platform = {
|
||||||
.ops = &dummy_dma_ops,
|
.ops = &dummy_dma_ops,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -342,7 +342,8 @@ static int snd_soc_dummy_probe(struct platform_device *pdev)
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ret = snd_soc_register_platform(&pdev->dev, &dummy_platform);
|
ret = devm_snd_soc_register_component(&pdev->dev, &dummy_platform,
|
||||||
|
NULL, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
snd_soc_unregister_codec(&pdev->dev);
|
snd_soc_unregister_codec(&pdev->dev);
|
||||||
return ret;
|
return ret;
|
||||||
@ -353,7 +354,6 @@ static int snd_soc_dummy_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
static int snd_soc_dummy_remove(struct platform_device *pdev)
|
static int snd_soc_dummy_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
snd_soc_unregister_platform(&pdev->dev);
|
|
||||||
snd_soc_unregister_codec(&pdev->dev);
|
snd_soc_unregister_codec(&pdev->dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user