diff options
| author | Pierre-Louis Bossart <[email protected]> | 2022-06-16 17:04:23 -0500 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2022-06-27 13:17:57 +0100 |
| commit | 37cb8a58013fc6ca2febaed355f6559012699542 (patch) | |
| tree | 3719327075ecfafa3a9e2e482185e21ae26df98a | |
| parent | 8c8a13e83c29472044d733dfb1fced2ccd025d35 (diff) | |
ASoC: fsl: fsl_sai: use pm_runtime_resume_and_get()
Simplify the flow.
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Reviewed-by: Bard Liao <[email protected]>
Reviewed-by: Kai Vehmanen <[email protected]>
Reviewed-by: Ranjani Sridharan <[email protected]>
Reviewed-by: Cezary Rojewski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/fsl/fsl_sai.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 4f5bd9597c74..b6407d4d3e09 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -1141,11 +1141,9 @@ static int fsl_sai_probe(struct platform_device *pdev) goto err_pm_disable; } - ret = pm_runtime_get_sync(dev); - if (ret < 0) { - pm_runtime_put_noidle(dev); + ret = pm_runtime_resume_and_get(dev); + if (ret < 0) goto err_pm_get_sync; - } /* Get sai version */ ret = fsl_sai_check_version(dev); |