Skip to content

Commit

Permalink
ASoC: wm8741: Convert to use devm_regmap_init_{spi,i2c}()
Browse files Browse the repository at this point in the history
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Tushar Behera authored and Mark Brown committed Nov 23, 2012
1 parent f4a75d2 commit fd64c45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/wm8741.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ static int wm8741_i2c_probe(struct i2c_client *i2c,
return ret;
}

wm8741->regmap = regmap_init_i2c(i2c, &wm8741_regmap);
wm8741->regmap = devm_regmap_init_i2c(i2c, &wm8741_regmap);
if (IS_ERR(wm8741->regmap)) {
ret = PTR_ERR(wm8741->regmap);
dev_err(&i2c->dev, "Failed to init regmap: %d\n", ret);
Expand Down Expand Up @@ -582,7 +582,7 @@ static int __devinit wm8741_spi_probe(struct spi_device *spi)
return ret;
}

wm8741->regmap = regmap_init_spi(spi, &wm8741_regmap);
wm8741->regmap = devm_regmap_init_spi(spi, &wm8741_regmap);
if (IS_ERR(wm8741->regmap)) {
ret = PTR_ERR(wm8741->regmap);
dev_err(&spi->dev, "Failed to init regmap: %d\n", ret);
Expand Down

0 comments on commit fd64c45

Please sign in to comment.