serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove()
[ Upstream commite3f0c638f4
] On remove, we get an error for "Runtime PM usage count underflow!". I guess this driver is mostly built-in, and this issue has gone unnoticed for a while. Somehow I did not catch this issue with my earlier fix done with commit4e0f5cc650
("serial: 8250_omap: Fix probe and remove for PM runtime"). Fixes:4e0f5cc650
("serial: 8250_omap: Fix probe and remove for PM runtime") Signed-off-by: Tony Lindgren <tony@atomide.com> Depends-on:dd8088d5a8
("PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter") Link: https://lore.kernel.org/r/20221028105813.54290-1-tony@atomide.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
83b6d4d6da
Коммит
e0db709a58
|
@ -1475,6 +1475,11 @@ err:
|
|||
static int omap8250_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct omap8250_priv *priv = platform_get_drvdata(pdev);
|
||||
int err;
|
||||
|
||||
err = pm_runtime_resume_and_get(&pdev->dev);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
pm_runtime_dont_use_autosuspend(&pdev->dev);
|
||||
pm_runtime_put_sync(&pdev->dev);
|
||||
|
|
Загрузка…
Ссылка в новой задаче