diff options
author | Qinglang Miao <miaoqinglang@huawei.com> | 2020-11-03 10:49:12 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-09 22:44:26 +0300 |
commit | 702b15cb97123cedcec56a39d9a21c5288eb9ae1 (patch) | |
tree | d4be90efa12296a146f002b8a87d3618acf46014 | |
parent | 45c0cba753641e5d7c3207f04241bd0e7a021698 (diff) | |
download | linux-702b15cb97123cedcec56a39d9a21c5288eb9ae1.tar.xz |
spi: mt7621: fix missing clk_disable_unprepare() on error in mt7621_spi_probe
Fix the missing clk_disable_unprepare() before return
from mt7621_spi_probe in the error handling case.
Fixes: cbd66c626e16 ("spi: mt7621: Move SPI driver out of staging")
Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com>
Link: https://lore.kernel.org/r/20201103074912.195576-1-miaoqinglang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-mt7621.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/spi-mt7621.c b/drivers/spi/spi-mt7621.c index 2c3b7a2a1ec7..2cdae7994e2a 100644 --- a/drivers/spi/spi-mt7621.c +++ b/drivers/spi/spi-mt7621.c @@ -353,6 +353,7 @@ static int mt7621_spi_probe(struct platform_device *pdev) master = spi_alloc_master(&pdev->dev, sizeof(*rs)); if (!master) { dev_info(&pdev->dev, "master allocation failed\n"); + clk_disable_unprepare(clk); return -ENOMEM; } @@ -377,6 +378,7 @@ static int mt7621_spi_probe(struct platform_device *pdev) ret = device_reset(&pdev->dev); if (ret) { dev_err(&pdev->dev, "SPI reset failed!\n"); + clk_disable_unprepare(clk); return ret; } |