未验证 提交 900ccdcb 编写于 作者: Z Zhang Qilong 提交者: Mark Brown

spi: stm32: fix reference leak in stm32_spi_resume

pm_runtime_get_sync will increment pm usage counter even it
failed. Forgetting to pm_runtime_put_noidle will result in
reference leak in stm32_spi_resume, so we should fix it.

Fixes: db96bf97 ("spi: stm32: fixes suspend/resume management")
Signed-off-by: NZhang Qilong <zhangqilong3@huawei.com>
Reviewed-by: NAlain Volmat <alain.volmat@st.com>
Link: https://lore.kernel.org/r/20201106015217.140476-1-zhangqilong3@huawei.comSigned-off-by: NMark Brown <broonie@kernel.org>
上级 c02bb16b
......@@ -2062,6 +2062,7 @@ static int stm32_spi_resume(struct device *dev)
ret = pm_runtime_get_sync(dev);
if (ret < 0) {
pm_runtime_put_noidle(dev);
dev_err(dev, "Unable to power device:%d\n", ret);
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册