diff options
author | ChiYuan Huang <cy_huang@richtek.com> | 2023-12-29 02:46:01 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-01-05 16:20:46 +0100 |
commit | 35040410372ca27a33cec8382d42c90b6b6c99f6 (patch) | |
tree | 0a686c4f9349521c43d51f4371173c193b5d4158 /sound | |
parent | ASoC: pxa: sspa: Don't select SND_ARM (diff) | |
download | linux-35040410372ca27a33cec8382d42c90b6b6c99f6.tar.xz linux-35040410372ca27a33cec8382d42c90b6b6c99f6.zip |
ASoC: codecs: rtq9128: Fix PM_RUNTIME usage
If 'pm_runtime_resume_and_get' is used, must check the return value to
prevent the active count not matched problem.
Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
Link: https://msgid.link/r/bebd9e2bed9e0528a7fd9c528d785da02caf4f1a.1703813842.git.cy_huang@richtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/rtq9128.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/codecs/rtq9128.c b/sound/soc/codecs/rtq9128.c index c22b047115cc..bda64f9eeb62 100644 --- a/sound/soc/codecs/rtq9128.c +++ b/sound/soc/codecs/rtq9128.c @@ -391,7 +391,11 @@ static int rtq9128_component_probe(struct snd_soc_component *comp) unsigned int val; int i, ret; - pm_runtime_resume_and_get(comp->dev); + ret = pm_runtime_resume_and_get(comp->dev); + if (ret < 0) { + dev_err(comp->dev, "Failed to resume device (%d)\n", ret); + return ret; + } val = snd_soc_component_read(comp, RTQ9128_REG_EFUSE_DATA); |