ASoC: pxa-ssp: Convert to devm_snd_soc_register_component
Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
bc0195aad0
Коммит
637ce53a1b
|
@ -813,14 +813,8 @@ static const struct of_device_id pxa_ssp_of_ids[] = {
|
||||||
|
|
||||||
static int asoc_ssp_probe(struct platform_device *pdev)
|
static int asoc_ssp_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
return snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
|
return devm_snd_soc_register_component(&pdev->dev, &pxa_ssp_component,
|
||||||
&pxa_ssp_dai, 1);
|
&pxa_ssp_dai, 1);
|
||||||
}
|
|
||||||
|
|
||||||
static int asoc_ssp_remove(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
snd_soc_unregister_component(&pdev->dev);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver asoc_ssp_driver = {
|
static struct platform_driver asoc_ssp_driver = {
|
||||||
|
@ -830,7 +824,6 @@ static struct platform_driver asoc_ssp_driver = {
|
||||||
},
|
},
|
||||||
|
|
||||||
.probe = asoc_ssp_probe,
|
.probe = asoc_ssp_probe,
|
||||||
.remove = asoc_ssp_remove,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
module_platform_driver(asoc_ssp_driver);
|
module_platform_driver(asoc_ssp_driver);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче