]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ASoC: ep93xx-i2s: Remove unnecessary dev_set_drvdata()
authorFabio Estevam <fabio.estevam@freescale.com>
Mon, 26 Aug 2013 12:25:14 +0000 (09:25 -0300)
committerMark Brown <broonie@linaro.org>
Thu, 29 Aug 2013 12:20:33 +0000 (13:20 +0100)
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>
sound/soc/cirrus/ep93xx-i2s.c

index f23f331e9a974409adf876356a2f766cb81ac812..a57643d6402f08ef5613aedd72ba005b4181ac77 100644 (file)
@@ -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);