diff options
author | Zheyu Ma <zheyuma97@gmail.com> | 2022-05-10 23:32:48 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-05-11 17:40:14 +0100 |
commit | 7883c193d7ae1ccc20ee4c06d2a1fea40074e454 (patch) | |
tree | c2a0a2ee2925d868fe942ec67568a96eb8e37fd4 /sound/soc | |
parent | cf7250e95d309ae518918613fb904a4565ffc85d (diff) | |
download | linux-7883c193d7ae1ccc20ee4c06d2a1fea40074e454.tar.bz2 |
ASoC: rt5645: Fix the error handling of rt5645_i2c_probe()
After enabling the regulator, The driver should disable the regulator
when failing at probing.
Signed-off-by: Zheyu Ma <zheyuma97@gmail.com>
Link: https://lore.kernel.org/r/20220510153251.1741210-4-zheyuma97@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/rt5645.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 1518eb7e9201..ccdea234a3ba 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -3943,7 +3943,7 @@ static int rt5645_i2c_probe(struct i2c_client *i2c) ret = PTR_ERR(regmap); dev_err(&i2c->dev, "Failed to allocate temp register map: %d\n", ret); - return ret; + goto err_enable; } /* @@ -3974,7 +3974,7 @@ static int rt5645_i2c_probe(struct i2c_client *i2c) ret = PTR_ERR(rt5645->regmap); dev_err(&i2c->dev, "Failed to allocate register map: %d\n", ret); - return ret; + goto err_enable; } regmap_write(rt5645->regmap, RT5645_RESET, 0); |