提交 56cf8dda 编写于 作者: A Amelie Delaunay 提交者: Vinod Koul

dmaengine: stm32-mdma: driver defers probe for clock and reset

This patch changes error log when failing to get the clock so that it is
not printed on failure with probe deferring.

It also defers probe when reset controller is expected but has not been
probed yet when MDMA device is probed.
Signed-off-by: NEtienne Carriere <etienne.carriere@st.com>
Signed-off-by: NAmelie Delaunay <amelie.delaunay@st.com>
Link: https://lore.kernel.org/r/20200127085334.13163-5-amelie.delaunay@st.comSigned-off-by: NVinod Koul <vkoul@kernel.org>
上级 cb0bc2d0
...@@ -1579,8 +1579,8 @@ static int stm32_mdma_probe(struct platform_device *pdev) ...@@ -1579,8 +1579,8 @@ static int stm32_mdma_probe(struct platform_device *pdev)
dmadev->clk = devm_clk_get(&pdev->dev, NULL); dmadev->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(dmadev->clk)) { if (IS_ERR(dmadev->clk)) {
ret = PTR_ERR(dmadev->clk); ret = PTR_ERR(dmadev->clk);
if (ret == -EPROBE_DEFER) if (ret != -EPROBE_DEFER)
dev_info(&pdev->dev, "Missing controller clock\n"); dev_err(&pdev->dev, "Missing clock controller\n");
return ret; return ret;
} }
...@@ -1591,7 +1591,11 @@ static int stm32_mdma_probe(struct platform_device *pdev) ...@@ -1591,7 +1591,11 @@ static int stm32_mdma_probe(struct platform_device *pdev)
} }
rst = devm_reset_control_get(&pdev->dev, NULL); rst = devm_reset_control_get(&pdev->dev, NULL);
if (!IS_ERR(rst)) { if (IS_ERR(rst)) {
ret = PTR_ERR(rst);
if (ret == -EPROBE_DEFER)
goto err_clk;
} else {
reset_control_assert(rst); reset_control_assert(rst);
udelay(2); udelay(2);
reset_control_deassert(rst); reset_control_deassert(rst);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册