diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-08-26 16:25:14 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-29 16:20:33 +0400 |
commit | ba1fb69508615011eba225de1ed2615fa205be9a (patch) | |
tree | e54e074893c111cf9e4d1934eb70ce4e4347dced /sound | |
parent | bd23ee0c5e2af1d3cdef813039384abd400dcffc (diff) | |
download | linux-ba1fb69508615011eba225de1ed2615fa205be9a.tar.xz |
ASoC: ep93xx-i2s: 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: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/cirrus/ep93xx-i2s.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/cirrus/ep93xx-i2s.c b/sound/soc/cirrus/ep93xx-i2s.c index f23f331e9a97..a57643d6402f 100644 --- a/sound/soc/cirrus/ep93xx-i2s.c +++ b/sound/soc/cirrus/ep93xx-i2s.c @@ -408,7 +408,6 @@ static int ep93xx_i2s_probe(struct platform_device *pdev) return 0; fail_put_lrclk: - dev_set_drvdata(&pdev->dev, NULL); clk_put(info->lrclk); fail_put_sclk: clk_put(info->sclk); @@ -423,7 +422,6 @@ static int ep93xx_i2s_remove(struct platform_device *pdev) struct ep93xx_i2s_info *info = dev_get_drvdata(&pdev->dev); snd_soc_unregister_component(&pdev->dev); - dev_set_drvdata(&pdev->dev, NULL); clk_put(info->lrclk); clk_put(info->sclk); clk_put(info->mclk); |