diff options
author | Mark Brown <broonie@linaro.org> | 2013-06-26 10:53:45 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-06-27 08:44:19 (GMT) |
commit | 417ced8b93d16f6f90336fdf6929ed599e74f705 (patch) | |
tree | ab69c79a3dccaef276985df5041fbdb83e2d3635 /sound/soc | |
parent | 6dab2fd71cd10756add702edc4b853f3829b8926 (diff) | |
download | linux-417ced8b93d16f6f90336fdf6929ed599e74f705.tar.xz |
ASoC: ep93xx: Remove redundant dev_set_drvdata() calls
The driver core does this and it's never legal to rely on the value of
drvdata if not set in probe() anyway.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/cirrus/ep93xx-ac97.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/cirrus/ep93xx-ac97.c b/sound/soc/cirrus/ep93xx-ac97.c index 7798fbd..d49e055 100644 --- a/sound/soc/cirrus/ep93xx-ac97.c +++ b/sound/soc/cirrus/ep93xx-ac97.c @@ -405,7 +405,6 @@ static int ep93xx_ac97_probe(struct platform_device *pdev) fail: platform_set_drvdata(pdev, NULL); ep93xx_ac97_info = NULL; - dev_set_drvdata(&pdev->dev, NULL); return ret; } @@ -420,7 +419,6 @@ static int ep93xx_ac97_remove(struct platform_device *pdev) platform_set_drvdata(pdev, NULL); ep93xx_ac97_info = NULL; - dev_set_drvdata(&pdev->dev, NULL); return 0; } |