From: Mark Brown Date: Sat, 9 Jun 2012 03:26:01 +0000 (+0800) Subject: ASoC: wm8904: Convert to devm_regmap_init_i2c() X-Git-Tag: v3.6-rc1~17^2~11^2~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d633edd95dc938f3f5f0d4e431932f4ca042bffb;p=profile%2Fivi%2Fkernel-x86-ivi.git ASoC: wm8904: Convert to devm_regmap_init_i2c() Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c index 02bc2ca..560a9a47 100644 --- a/sound/soc/codecs/wm8904.c +++ b/sound/soc/codecs/wm8904.c @@ -2263,7 +2263,7 @@ static __devinit int wm8904_i2c_probe(struct i2c_client *i2c, if (wm8904 == NULL) return -ENOMEM; - wm8904->regmap = regmap_init_i2c(i2c, &wm8904_regmap); + wm8904->regmap = devm_regmap_init_i2c(i2c, &wm8904_regmap); if (IS_ERR(wm8904->regmap)) { ret = PTR_ERR(wm8904->regmap); dev_err(&i2c->dev, "Failed to allocate register map: %d\n", @@ -2283,15 +2283,12 @@ static __devinit int wm8904_i2c_probe(struct i2c_client *i2c, return 0; err: - regmap_exit(wm8904->regmap); return ret; } static __devexit int wm8904_i2c_remove(struct i2c_client *client) { - struct wm8904_priv *wm8904 = i2c_get_clientdata(client); snd_soc_unregister_codec(&client->dev); - regmap_exit(wm8904->regmap); return 0; }