aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8996.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-10-23 23:31:12 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-24 08:09:33 -0400
commit753ddf52153b60be924109df3bebab0cd60b3297 (patch)
tree1d56de1d605ae23c31507e66bde803a8da8156cf /sound/soc/codecs/wm8996.c
parent1d533de998e2887f23c8cf6c39d5db55f8d202af (diff)
ASoC: wm8996: Avoid a redundant i2c_get_clientdata call in wm8996_i2c_remove
Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm8996.c')
-rw-r--r--sound/soc/codecs/wm8996.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8996.c b/sound/soc/codecs/wm8996.c
index 645c980d6b80..32324c9ddc37 100644
--- a/sound/soc/codecs/wm8996.c
+++ b/sound/soc/codecs/wm8996.c
@@ -3144,7 +3144,7 @@ static __devexit int wm8996_i2c_remove(struct i2c_client *client)
3144 snd_soc_unregister_codec(&client->dev); 3144 snd_soc_unregister_codec(&client->dev);
3145 if (wm8996->pdata.ldo_ena > 0) 3145 if (wm8996->pdata.ldo_ena > 0)
3146 gpio_free(wm8996->pdata.ldo_ena); 3146 gpio_free(wm8996->pdata.ldo_ena);
3147 kfree(i2c_get_clientdata(client)); 3147 kfree(wm8996);
3148 return 0; 3148 return 0;
3149} 3149}
3150 3150