From: Axel Lin Date: Tue, 10 Jun 2014 03:36:41 +0000 (+0800) Subject: ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dd56ebadf4bfccb47a3b82d0b01a99c22967abc8;p=linux-beck.git ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 02147be2b302..a7762d0a623e 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)