diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-06-10 03:36:41 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-21 10:31:51 (GMT) |
commit | dd56ebadf4bfccb47a3b82d0b01a99c22967abc8 (patch) | |
tree | b7b7ecec6be62dd0414c9e0c6efa1b11eff1b965 /sound/soc/codecs/rt5645.c | |
parent | 7171511eaec5bf23fb06078f59784a3a0626b38f (diff) | |
download | linux-dd56ebadf4bfccb47a3b82d0b01a99c22967abc8.tar.xz |
ASoC: rt5645: Remove unneeded goto in rt5645_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/rt5645.c')
-rw-r--r-- | sound/soc/codecs/rt5645.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 02147be..a7762d0 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -2345,14 +2345,8 @@ static int rt5645_i2c_probe(struct i2c_client *i2c, } - ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645, - rt5645_dai, ARRAY_SIZE(rt5645_dai)); - if (ret < 0) - goto err; - - return 0; -err: - return ret; + return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645, + rt5645_dai, ARRAY_SIZE(rt5645_dai)); } static int rt5645_i2c_remove(struct i2c_client *i2c) |