Commit 18273b05 authored by Mark Brown's avatar Mark Brown

ASoC: wm8580: Move regulator acquisition to I2C probe

Better style as we get all the resources we need prior to starting the
ASoC level probe.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent b689d9f9
...@@ -867,7 +867,7 @@ static struct snd_soc_dai_driver wm8580_dai[] = { ...@@ -867,7 +867,7 @@ static struct snd_soc_dai_driver wm8580_dai[] = {
static int wm8580_probe(struct snd_soc_codec *codec) static int wm8580_probe(struct snd_soc_codec *codec)
{ {
struct wm8580_priv *wm8580 = snd_soc_codec_get_drvdata(codec); struct wm8580_priv *wm8580 = snd_soc_codec_get_drvdata(codec);
int ret = 0,i; int ret = 0;
ret = snd_soc_codec_set_cache_io(codec, 7, 9, SND_SOC_REGMAP); ret = snd_soc_codec_set_cache_io(codec, 7, 9, SND_SOC_REGMAP);
if (ret < 0) { if (ret < 0) {
...@@ -875,16 +875,6 @@ static int wm8580_probe(struct snd_soc_codec *codec) ...@@ -875,16 +875,6 @@ static int wm8580_probe(struct snd_soc_codec *codec)
return ret; return ret;
} }
for (i = 0; i < ARRAY_SIZE(wm8580->supplies); i++)
wm8580->supplies[i].supply = wm8580_supply_names[i];
ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(wm8580->supplies),
wm8580->supplies);
if (ret != 0) {
dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
return ret;
}
ret = regulator_bulk_enable(ARRAY_SIZE(wm8580->supplies), ret = regulator_bulk_enable(ARRAY_SIZE(wm8580->supplies),
wm8580->supplies); wm8580->supplies);
if (ret != 0) { if (ret != 0) {
...@@ -906,7 +896,6 @@ static int wm8580_probe(struct snd_soc_codec *codec) ...@@ -906,7 +896,6 @@ static int wm8580_probe(struct snd_soc_codec *codec)
err_regulator_enable: err_regulator_enable:
regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies);
err_regulator_get: err_regulator_get:
regulator_bulk_free(ARRAY_SIZE(wm8580->supplies), wm8580->supplies);
return ret; return ret;
} }
...@@ -918,7 +907,6 @@ static int wm8580_remove(struct snd_soc_codec *codec) ...@@ -918,7 +907,6 @@ static int wm8580_remove(struct snd_soc_codec *codec)
wm8580_set_bias_level(codec, SND_SOC_BIAS_OFF); wm8580_set_bias_level(codec, SND_SOC_BIAS_OFF);
regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies);
regulator_bulk_free(ARRAY_SIZE(wm8580->supplies), wm8580->supplies);
return 0; return 0;
} }
...@@ -958,7 +946,7 @@ static int wm8580_i2c_probe(struct i2c_client *i2c, ...@@ -958,7 +946,7 @@ static int wm8580_i2c_probe(struct i2c_client *i2c,
const struct i2c_device_id *id) const struct i2c_device_id *id)
{ {
struct wm8580_priv *wm8580; struct wm8580_priv *wm8580;
int ret; int ret, i;
wm8580 = devm_kzalloc(&i2c->dev, sizeof(struct wm8580_priv), wm8580 = devm_kzalloc(&i2c->dev, sizeof(struct wm8580_priv),
GFP_KERNEL); GFP_KERNEL);
...@@ -969,6 +957,16 @@ static int wm8580_i2c_probe(struct i2c_client *i2c, ...@@ -969,6 +957,16 @@ static int wm8580_i2c_probe(struct i2c_client *i2c,
if (IS_ERR(wm8580->regmap)) if (IS_ERR(wm8580->regmap))
return PTR_ERR(wm8580->regmap); return PTR_ERR(wm8580->regmap);
for (i = 0; i < ARRAY_SIZE(wm8580->supplies); i++)
wm8580->supplies[i].supply = wm8580_supply_names[i];
ret = devm_regulator_bulk_get(&i2c->dev, ARRAY_SIZE(wm8580->supplies),
wm8580->supplies);
if (ret != 0) {
dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
return ret;
}
i2c_set_clientdata(i2c, wm8580); i2c_set_clientdata(i2c, wm8580);
ret = snd_soc_register_codec(&i2c->dev, ret = snd_soc_register_codec(&i2c->dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment