diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-06-10 05:37:24 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-21 12:32:28 +0200 |
commit | d0bdcb9181873bc085ca0b7fabefb92eb2d9e708 (patch) | |
tree | 18d4303e86ddd57f89643c998f64d92b165af2f0 /sound/soc/codecs/rt5677.c | |
parent | ASoC: rt5677: Convert to use rl6231_calc_dmic_clk (diff) | |
download | linux-d0bdcb9181873bc085ca0b7fabefb92eb2d9e708.tar.xz linux-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.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, 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) |