diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-06-09 23:37:24 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-21 06:32:28 -0400 |
commit | d0bdcb9181873bc085ca0b7fabefb92eb2d9e708 (patch) | |
tree | 18d4303e86ddd57f89643c998f64d92b165af2f0 | |
parent | 9a53581efabec8d9c69933c360e2ab036a1da9bc (diff) |
ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/codecs/rt5677.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c index 45f99a824c15..a18740c31b82 100644 --- a/sound/soc/codecs/rt5677.c +++ b/sound/soc/codecs/rt5677.c | |||
@@ -3426,14 +3426,8 @@ static int rt5677_i2c_probe(struct i2c_client *i2c, | |||
3426 | regmap_update_bits(rt5677->regmap, RT5677_IN1, | 3426 | regmap_update_bits(rt5677->regmap, RT5677_IN1, |
3427 | RT5677_IN_DF2, RT5677_IN_DF2); | 3427 | RT5677_IN_DF2, RT5677_IN_DF2); |
3428 | 3428 | ||
3429 | ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677, | 3429 | return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677, |
3430 | rt5677_dai, ARRAY_SIZE(rt5677_dai)); | 3430 | rt5677_dai, ARRAY_SIZE(rt5677_dai)); |
3431 | if (ret < 0) | ||
3432 | goto err; | ||
3433 | |||
3434 | return 0; | ||
3435 | err: | ||
3436 | return ret; | ||
3437 | } | 3431 | } |
3438 | 3432 | ||
3439 | static int rt5677_i2c_remove(struct i2c_client *i2c) | 3433 | static int rt5677_i2c_remove(struct i2c_client *i2c) |