ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N
When CONFIG_PM=N, pm_runtime_put_sync() returns -ENOSYS which breaks the probe function of these drivers. Other users of pm_runtime_put_sync() typically don't check the return value. In order to keep the program flow as intended, check for -ENOSYS. This commit is similar to commit0434d3f
(omap-mailbox.c). Fixes:cab04ab590
("ASoC: fsl_asrc: Don't use devm_regmap_init_mmio_clk") Fixes:203773e393
("ASoC: fsl_esai: Don't use devm_regmap_init_mmio_clk") Fixes:2277e7e36b
("ASoC: fsl_sai: Don't use devm_regmap_init_mmio_clk") Signed-off-by: Maarten Zanders <maarten.zanders@mind.be> Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com> Link: https://lore.kernel.org/r/20221028141129.100702-1-maarten.zanders@mind.be Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
6ec27c5388
Коммит
6a564338a2
|
@ -1232,7 +1232,7 @@ static int fsl_asrc_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
ret = pm_runtime_put_sync(&pdev->dev);
|
||||
if (ret < 0)
|
||||
if (ret < 0 && ret != -ENOSYS)
|
||||
goto err_pm_get_sync;
|
||||
|
||||
ret = devm_snd_soc_register_component(&pdev->dev, &fsl_asrc_component,
|
||||
|
|
|
@ -1069,7 +1069,7 @@ static int fsl_esai_probe(struct platform_device *pdev)
|
|||
regmap_write(esai_priv->regmap, REG_ESAI_RSMB, 0);
|
||||
|
||||
ret = pm_runtime_put_sync(&pdev->dev);
|
||||
if (ret < 0)
|
||||
if (ret < 0 && ret != -ENOSYS)
|
||||
goto err_pm_get_sync;
|
||||
|
||||
/*
|
||||
|
|
|
@ -1446,7 +1446,7 @@ static int fsl_sai_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
ret = pm_runtime_put_sync(dev);
|
||||
if (ret < 0)
|
||||
if (ret < 0 && ret != -ENOSYS)
|
||||
goto err_pm_get_sync;
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче