mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
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>
This commit is contained in:
parent
7171511eae
commit
dd56ebadf4
1 changed files with 2 additions and 8 deletions
|
@ -2345,14 +2345,8 @@ static int rt5645_i2c_probe(struct i2c_client *i2c,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645,
|
return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645,
|
||||||
rt5645_dai, ARRAY_SIZE(rt5645_dai));
|
rt5645_dai, ARRAY_SIZE(rt5645_dai));
|
||||||
if (ret < 0)
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
err:
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rt5645_i2c_remove(struct i2c_client *i2c)
|
static int rt5645_i2c_remove(struct i2c_client *i2c)
|
||||||
|
|
Loading…
Add table
Reference in a new issue