2009-09-04 20:07:56 +03:00
|
|
|
diff --git a/drivers/spi/spi_gpio.c b/drivers/spi/spi_gpio.c
|
2009-09-21 19:17:14 +03:00
|
|
|
index a128338..0ca5365 100644
|
2009-09-04 20:07:56 +03:00
|
|
|
--- a/drivers/spi/spi_gpio.c
|
|
|
|
+++ b/drivers/spi/spi_gpio.c
|
2009-09-21 19:17:14 +03:00
|
|
|
@@ -254,9 +254,11 @@ spi_gpio_request(struct spi_gpio_platform_data *pdata, const char *label)
|
2009-09-03 12:59:10 +03:00
|
|
|
if (value)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
- value = spi_gpio_alloc(SPI_MISO_GPIO, label, true);
|
|
|
|
- if (value)
|
|
|
|
- goto free_mosi;
|
|
|
|
+ if (SPI_MISO_GPIO != SPI_MOSI_GPIO) {
|
|
|
|
+ value = spi_gpio_alloc(SPI_MISO_GPIO, label, true);
|
|
|
|
+ if (value)
|
|
|
|
+ goto free_mosi;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
value = spi_gpio_alloc(SPI_SCK_GPIO, label, false);
|
|
|
|
if (value)
|
2009-09-21 19:17:14 +03:00
|
|
|
@@ -319,7 +321,8 @@ static int __devinit spi_gpio_probe(struct platform_device *pdev)
|
2009-09-03 12:59:10 +03:00
|
|
|
if (status < 0) {
|
|
|
|
spi_master_put(spi_gpio->bitbang.master);
|
|
|
|
gpio_free:
|
|
|
|
- gpio_free(SPI_MISO_GPIO);
|
|
|
|
+ if (SPI_MISO_GPIO != SPI_MOSI_GPIO)
|
|
|
|
+ gpio_free(SPI_MISO_GPIO);
|
|
|
|
gpio_free(SPI_MOSI_GPIO);
|
|
|
|
gpio_free(SPI_SCK_GPIO);
|
|
|
|
spi_master_put(master);
|
2009-09-21 19:17:14 +03:00
|
|
|
@@ -343,7 +346,8 @@ static int __devexit spi_gpio_remove(struct platform_device *pdev)
|
2009-09-03 12:59:10 +03:00
|
|
|
|
|
|
|
platform_set_drvdata(pdev, NULL);
|
|
|
|
|
|
|
|
- gpio_free(SPI_MISO_GPIO);
|
|
|
|
+ if (SPI_MISO_GPIO != SPI_MOSI_GPIO)
|
|
|
|
+ gpio_free(SPI_MISO_GPIO);
|
|
|
|
gpio_free(SPI_MOSI_GPIO);
|
|
|
|
gpio_free(SPI_SCK_GPIO);
|
|
|
|
|