Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/topic/wm8955' into asoc-next
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Dec 2, 2012
2 parents 7f90af5 + 385b27f commit f5a1345
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions 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 f5a1345

Please sign in to comment.