projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6100107
)
ASoC: cs42l43: Handle error from devm_pm_runtime_enable
author
Charles Keepax
<ckeepax@opensource.cirrus.com>
Tue, 6 Feb 2024 11:38:49 +0000
(11:38 +0000)
committer
Mark Brown
<broonie@kernel.org>
Wed, 7 Feb 2024 10:34:20 +0000
(10:34 +0000)
As devm_pm_runtime_enable can fail due to memory allocations, it is
best to handle the error.
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link:
https://lore.kernel.org/r/20240206113850.719888-1-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs42l43.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/cs42l43.c
b/sound/soc/codecs/cs42l43.c
index 6a64681767de8122d06bee23b5a21674d930bf57..4d2a5584aa5763db3025f75d9688c424eb076f16 100644
(file)
--- a/
sound/soc/codecs/cs42l43.c
+++ b/
sound/soc/codecs/cs42l43.c
@@
-2257,7
+2257,10
@@
static int cs42l43_codec_probe(struct platform_device *pdev)
pm_runtime_use_autosuspend(priv->dev);
pm_runtime_set_active(priv->dev);
pm_runtime_get_noresume(priv->dev);
- devm_pm_runtime_enable(priv->dev);
+
+ ret = devm_pm_runtime_enable(priv->dev);
+ if (ret)
+ goto err_pm;
for (i = 0; i < ARRAY_SIZE(cs42l43_irqs); i++) {
ret = cs42l43_request_irq(priv, dom, cs42l43_irqs[i].name,