diff options
author | John Ogness <john.ogness@linutronix.de> | 2009-11-24 11:53:07 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2009-12-08 20:48:16 -0500 |
commit | bbd050af0e2b7d77bfc959cf76219eb71c3b982a (patch) | |
tree | 9a4da1f3a330ecdc5c6bbba7494940d74376ce79 /drivers/spi | |
parent | ce1807b2e527979bd77d8a1a1768a6365f3febb5 (diff) |
spi/i.MX: fix broken error handling for gpio_request
i.MX35-provided chipselects are represented using negative numbers. If
gpio_request() fails and the previous chipselect was a negative number,
the while loop is endless (i is never decremented).
Also, the error loop would never call gpio_free on chipselect[0].
And finally, the error message was missing an endline.
Signed-off-by: John Ogness <john.ogness@linutronix.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi_imx.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c index 1b17f443dee7..8ffa48ce570c 100644 --- a/drivers/spi/spi_imx.c +++ b/drivers/spi/spi_imx.c | |||
@@ -516,11 +516,12 @@ static int __init spi_imx_probe(struct platform_device *pdev) | |||
516 | continue; | 516 | continue; |
517 | ret = gpio_request(spi_imx->chipselect[i], DRIVER_NAME); | 517 | ret = gpio_request(spi_imx->chipselect[i], DRIVER_NAME); |
518 | if (ret) { | 518 | if (ret) { |
519 | i--; | 519 | while (i > 0) { |
520 | while (i > 0) | 520 | i--; |
521 | if (spi_imx->chipselect[i] >= 0) | 521 | if (spi_imx->chipselect[i] >= 0) |
522 | gpio_free(spi_imx->chipselect[i--]); | 522 | gpio_free(spi_imx->chipselect[i]); |
523 | dev_err(&pdev->dev, "can't get cs gpios"); | 523 | } |
524 | dev_err(&pdev->dev, "can't get cs gpios\n"); | ||
524 | goto out_master_put; | 525 | goto out_master_put; |
525 | } | 526 | } |
526 | } | 527 | } |