提交 568852b7 编写于 作者: W Wei Yongjun 提交者: Mark Brown

spi: spi-cavium-thunderx: Add missing clk_disable_unprepare()

Add the missing clk_disable_unprepare() before return in the probe
error handling case and remove.
Signed-off-by: NWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 7347a6c7
...@@ -80,6 +80,7 @@ static int thunderx_spi_probe(struct pci_dev *pdev, ...@@ -80,6 +80,7 @@ static int thunderx_spi_probe(struct pci_dev *pdev,
return 0; return 0;
error: error:
clk_disable_unprepare(p->clk);
spi_master_put(master); spi_master_put(master);
return ret; return ret;
} }
...@@ -93,6 +94,7 @@ static void thunderx_spi_remove(struct pci_dev *pdev) ...@@ -93,6 +94,7 @@ static void thunderx_spi_remove(struct pci_dev *pdev)
if (!p) if (!p)
return; return;
clk_disable_unprepare(p->clk);
/* Put everything in a known state. */ /* Put everything in a known state. */
writeq(0, p->register_base + OCTEON_SPI_CFG(p)); writeq(0, p->register_base + OCTEON_SPI_CFG(p));
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册