Skip to content

Commit

Permalink
ASoC: cs42l43: Handle error from devm_pm_runtime_enable
Browse files Browse the repository at this point in the history
[ Upstream commit d172205 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
charleskeepax authored and Sasha Levin committed Mar 26, 2024
1 parent 6ee29ab commit e123b14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sound/soc/codecs/cs42l43.c
Expand Up @@ -2175,7 +2175,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,
Expand Down

0 comments on commit e123b14

Please sign in to comment.