summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/rt5677.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-06-10 11:37:24 +0800
committerMark Brown <broonie@linaro.org>2014-06-21 11:32:28 +0100
commitd0bdcb9181873bc085ca0b7fabefb92eb2d9e708 (patch)
tree18d4303e86ddd57f89643c998f64d92b165af2f0 /sound/soc/codecs/rt5677.c
parent9a53581efabec8d9c69933c360e2ab036a1da9bc (diff)
downloadlinux-stable-d0bdcb9181873bc085ca0b7fabefb92eb2d9e708.tar.gz
linux-stable-d0bdcb9181873bc085ca0b7fabefb92eb2d9e708.tar.bz2
linux-stable-d0bdcb9181873bc085ca0b7fabefb92eb2d9e708.zip
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>
Diffstat (limited to 'sound/soc/codecs/rt5677.c')
-rw-r--r--sound/soc/codecs/rt5677.c10
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,
regmap_update_bits(rt5677->regmap, RT5677_IN1,
RT5677_IN_DF2, RT5677_IN_DF2);
- ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677,
- rt5677_dai, ARRAY_SIZE(rt5677_dai));
- if (ret < 0)
- goto err;
-
- return 0;
-err:
- return ret;
+ return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677,
+ rt5677_dai, ARRAY_SIZE(rt5677_dai));
}
static int rt5677_i2c_remove(struct i2c_client *i2c)