diff options
author | Trent Piepho <tpiepho@impinj.com> | 2017-10-31 15:49:05 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-10 16:28:10 -0500 |
commit | 4e21791e741c7c1b962c4a8327529f52310b9aac (patch) | |
tree | c0d85042521e6549a57bb189d522177e43f495a7 | |
parent | 881a0b993e9f065cbb3673c94c395fa1de24bdcc (diff) |
spi: imx: Fix failure path leak on GPIO request error
If the code that requests any chip select GPIOs fails, the cleanup of
spi_bitbang_start() by calling spi_bitbang_stop() is not done. Add this
to the failure path.
Note that spi_bitbang_start() has to be called before requesting GPIOs
because the GPIO data in the spi master is populated when the master is
registed, and that doesn't happen until spi_bitbang_start() is called.
CC: Shawn Guo <shawnguo@kernel.org>
CC: Sascha Hauer <kernel@pengutronix.de>
CC: Fabio Estevam <fabio.estevam@nxp.com>
CC: Mark Brown <broonie@kernel.org>
CC: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: Trent Piepho <tpiepho@impinj.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-imx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c index 70dcc8ee1f6b..fdbbdac66839 100644 --- a/drivers/spi/spi-imx.c +++ b/drivers/spi/spi-imx.c | |||
@@ -1633,7 +1633,7 @@ static int spi_imx_probe(struct platform_device *pdev) | |||
1633 | if (ret) { | 1633 | if (ret) { |
1634 | dev_err(&pdev->dev, "Can't get CS GPIO %i\n", | 1634 | dev_err(&pdev->dev, "Can't get CS GPIO %i\n", |
1635 | master->cs_gpios[i]); | 1635 | master->cs_gpios[i]); |
1636 | goto out_clk_put; | 1636 | goto out_spi_bitbang; |
1637 | } | 1637 | } |
1638 | } | 1638 | } |
1639 | } | 1639 | } |
@@ -1650,6 +1650,8 @@ static int spi_imx_probe(struct platform_device *pdev) | |||
1650 | clk_disable(spi_imx->clk_per); | 1650 | clk_disable(spi_imx->clk_per); |
1651 | return ret; | 1651 | return ret; |
1652 | 1652 | ||
1653 | out_spi_bitbang: | ||
1654 | spi_bitbang_stop(&spi_imx->bitbang); | ||
1653 | out_clk_put: | 1655 | out_clk_put: |
1654 | clk_disable_unprepare(spi_imx->clk_ipg); | 1656 | clk_disable_unprepare(spi_imx->clk_ipg); |
1655 | out_put_per: | 1657 | out_put_per: |