diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-08-23 15:03:48 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-08-24 12:37:43 +0100 |
commit | 568852b7002414c81084f07c7e39e897229d3b6f (patch) | |
tree | bd837786418afbe048a55c6868c1bc9f92158fc7 /drivers/spi | |
parent | 7347a6c7af8d9b5edf587678e80c7e5bc24ec2d5 (diff) | |
download | linux-568852b7002414c81084f07c7e39e897229d3b6f.tar.gz |
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: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-cavium-thunderx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/spi-cavium-thunderx.c b/drivers/spi/spi-cavium-thunderx.c index eff2a130ef0c..877937706240 100644 --- a/drivers/spi/spi-cavium-thunderx.c +++ b/drivers/spi/spi-cavium-thunderx.c @@ -80,6 +80,7 @@ static int thunderx_spi_probe(struct pci_dev *pdev, return 0; error: + clk_disable_unprepare(p->clk); spi_master_put(master); return ret; } @@ -93,6 +94,7 @@ static void thunderx_spi_remove(struct pci_dev *pdev) if (!p) return; + clk_disable_unprepare(p->clk); /* Put everything in a known state. */ writeq(0, p->register_base + OCTEON_SPI_CFG(p)); } |