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

Commit 5af407cd authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown
Browse files

ASoC: fsl_spdif: Remove unnecessary dev_set_drvdata()



Driver core clears the driver data to NULL after device_release or on probe
failure, so just remove it from here.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Reviewed-by: default avatarNicolin Chen <b42378@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent f0377086
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1184,7 +1184,7 @@ static int fsl_spdif_probe(struct platform_device *pdev)
					 &spdif_priv->cpu_dai_drv, 1);
	if (ret) {
		dev_err(&pdev->dev, "failed to register DAI: %d\n", ret);
		goto error_dev;
		return ret;
	}

	ret = imx_pcm_dma_init(pdev);
@@ -1197,8 +1197,6 @@ static int fsl_spdif_probe(struct platform_device *pdev)

error_component:
	snd_soc_unregister_component(&pdev->dev);
error_dev:
	dev_set_drvdata(&pdev->dev, NULL);

	return ret;
}
@@ -1207,7 +1205,6 @@ static int fsl_spdif_remove(struct platform_device *pdev)
{
	imx_pcm_dma_exit(pdev);
	snd_soc_unregister_component(&pdev->dev);
	dev_set_drvdata(&pdev->dev, NULL);

	return 0;
}