提交 19f5be0f 编写于 作者: W Wei Yongjun 提交者: Tejun Heo

ahci: imx: add missing clk_disable_unprepare() on error in imx_sata_enable()

Add the missing clk_disable_unprepare() before return from
imx_sata_enable() in the phy reset error handling case.
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: NShawn Guo <shawn.guo@freescale.com>
Signed-off-by: NTejun Heo <tj@kernel.org>
上级 0185b1b7
......@@ -257,7 +257,7 @@ static int imx_sata_enable(struct ahci_host_priv *hpriv)
ret = imx_sata_phy_reset(hpriv);
if (ret) {
dev_err(dev, "failed to reset phy: %d\n", ret);
goto disable_regulator;
goto disable_clk;
}
}
......@@ -265,6 +265,8 @@ static int imx_sata_enable(struct ahci_host_priv *hpriv)
return 0;
disable_clk:
clk_disable_unprepare(imxpriv->sata_ref_clk);
disable_regulator:
if (hpriv->target_pwr)
regulator_disable(hpriv->target_pwr);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册