From: Axel Lin Date: Tue, 10 Jun 2014 03:35:56 +0000 (+0800) Subject: ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1657caf5d8c5f96528bb6b041028174ee2681681;p=linux-beck.git ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c index de80e89b5fd8..6bc6efdec550 100644 --- a/sound/soc/codecs/rt5640.c +++ b/sound/soc/codecs/rt5640.c @@ -2215,14 +2215,8 @@ static int rt5640_i2c_probe(struct i2c_client *i2c, rt5640->hp_mute = 1; - ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5640, - rt5640_dai, ARRAY_SIZE(rt5640_dai)); - if (ret < 0) - goto err; - - return 0; -err: - return ret; + return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5640, + rt5640_dai, ARRAY_SIZE(rt5640_dai)); } static int rt5640_i2c_remove(struct i2c_client *i2c)