Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342952
b: refs/heads/master
c: 7a7f987
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown committed Dec 9, 2012
1 parent 44d7023 commit 1f2b930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f443a29db9a90723a4d9609c219b49f8747084c2
refs/heads/master: 7a7f9875d9d35315c22830be5ce7fdd80b1d1ab0
11 changes: 1 addition & 10 deletions trunk/sound/soc/codecs/wm8955.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ static __devinit int wm8955_i2c_probe(struct i2c_client *i2c,
if (wm8955 == NULL)
return -ENOMEM;

wm8955->regmap = regmap_init_i2c(i2c, &wm8955_regmap);
wm8955->regmap = devm_regmap_init_i2c(i2c, &wm8955_regmap);
if (IS_ERR(wm8955->regmap)) {
ret = PTR_ERR(wm8955->regmap);
dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
Expand All @@ -1035,22 +1035,13 @@ static __devinit int wm8955_i2c_probe(struct i2c_client *i2c,

ret = snd_soc_register_codec(&i2c->dev,
&soc_codec_dev_wm8955, &wm8955_dai, 1);
if (ret != 0)
goto err;

return ret;

err:
regmap_exit(wm8955->regmap);
return ret;
}

static __devexit int wm8955_i2c_remove(struct i2c_client *client)
{
struct wm8955_priv *wm8955 = i2c_get_clientdata(client);

snd_soc_unregister_codec(&client->dev);
regmap_exit(wm8955->regmap);

return 0;
}
Expand Down

0 comments on commit 1f2b930

Please sign in to comment.