projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d533de
)
ASoC: wm8996: Avoid a redundant i2c_get_clientdata call in wm8996_i2c_remove
author
Axel Lin
<axel.lin@gmail.com>
Mon, 24 Oct 2011 03:31:12 +0000
(11:31 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Mon, 24 Oct 2011 12:09:33 +0000
(14:09 +0200)
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>
sound/soc/codecs/wm8996.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/codecs/wm8996.c
b/sound/soc/codecs/wm8996.c
index 645c980d6b80edd81b1f0886c013c34f884346d6..32324c9ddc379b93da200d8cefdb7c4427c7b254 100644
(file)
--- 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)
snd_soc_unregister_codec(&client->dev);
if (wm8996->pdata.ldo_ena > 0)
gpio_free(wm8996->pdata.ldo_ena);
- kfree(
i2c_get_clientdata(client)
);
+ kfree(
wm8996
);
return 0;
}