Commit da0fe8fd authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Mark Brown

ASoC: SOF: pcm: fix pm_runtime imbalance in error handling

When an error occurs, we need to make sure the device can pm_runtime
suspend instead of keeping it active.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com
Link: https://lore.kernel.org/r/20230512103315.8921-3-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org
parent 3de97586
...@@ -643,16 +643,17 @@ static int sof_pcm_probe(struct snd_soc_component *component) ...@@ -643,16 +643,17 @@ static int sof_pcm_probe(struct snd_soc_component *component)
"%s/%s", "%s/%s",
plat_data->tplg_filename_prefix, plat_data->tplg_filename_prefix,
plat_data->tplg_filename); plat_data->tplg_filename);
if (!tplg_filename) if (!tplg_filename) {
return -ENOMEM; ret = -ENOMEM;
goto pm_error;
}
ret = snd_sof_load_topology(component, tplg_filename); ret = snd_sof_load_topology(component, tplg_filename);
if (ret < 0) { if (ret < 0)
dev_err(component->dev, "error: failed to load DSP topology %d\n", dev_err(component->dev, "error: failed to load DSP topology %d\n",
ret); ret);
return ret;
}
pm_error:
pm_runtime_mark_last_busy(component->dev); pm_runtime_mark_last_busy(component->dev);
pm_runtime_put_autosuspend(component->dev); pm_runtime_put_autosuspend(component->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment