[alsa-devel] [PATCH] ASoC: fsl_ssi: Use devm_snd_soc_register_component()
Nicolin Chen
nicoleotsuka at gmail.com
Thu Apr 9 20:32:17 CEST 2015
On Thu, Apr 09, 2015 at 02:56:41PM -0300, Fabio Estevam wrote:
> Using devm_snd_soc_register_component() can make the code shorter and
> cleaner.
>
> Signed-off-by: Fabio Estevam <fabio.estevam at freescale.com>
Acked-by: Nicolin Chen <nicoleotsuka at gmail.com>
Thank you
Nicolin
> ---
> sound/soc/fsl/fsl_ssi.c | 12 ++++--------
> 1 file changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
> index 6b0c8f7..143cc16 100644
> --- a/sound/soc/fsl/fsl_ssi.c
> +++ b/sound/soc/fsl/fsl_ssi.c
> @@ -1393,8 +1393,8 @@ static int fsl_ssi_probe(struct platform_device *pdev)
> return ret;
> }
>
> - ret = snd_soc_register_component(&pdev->dev, &fsl_ssi_component,
> - &ssi_private->cpu_dai_drv, 1);
> + ret = devm_snd_soc_register_component(&pdev->dev, &fsl_ssi_component,
> + &ssi_private->cpu_dai_drv, 1);
> if (ret) {
> dev_err(&pdev->dev, "failed to register DAI: %d\n", ret);
> goto error_asoc_register;
> @@ -1407,13 +1407,13 @@ static int fsl_ssi_probe(struct platform_device *pdev)
> if (ret < 0) {
> dev_err(&pdev->dev, "could not claim irq %u\n",
> ssi_private->irq);
> - goto error_irq;
> + goto error_asoc_register;
> }
> }
>
> ret = fsl_ssi_debugfs_create(&ssi_private->dbg_stats, &pdev->dev);
> if (ret)
> - goto error_irq;
> + goto error_asoc_register;
>
> /*
> * If codec-handle property is missing from SSI node, we assume
> @@ -1454,9 +1454,6 @@ done:
> error_sound_card:
> fsl_ssi_debugfs_remove(&ssi_private->dbg_stats);
>
> -error_irq:
> - snd_soc_unregister_component(&pdev->dev);
> -
> error_asoc_register:
> if (ssi_private->soc->imx)
> fsl_ssi_imx_clean(pdev, ssi_private);
> @@ -1472,7 +1469,6 @@ static int fsl_ssi_remove(struct platform_device *pdev)
>
> if (ssi_private->pdev)
> platform_device_unregister(ssi_private->pdev);
> - snd_soc_unregister_component(&pdev->dev);
>
> if (ssi_private->soc->imx)
> fsl_ssi_imx_clean(pdev, ssi_private);
> --
> 1.9.1
>
More information about the Alsa-devel
mailing list