]> Pileus Git - ~andy/linux/commitdiff
spi: s3c64xx: Add fix for crash in spi suspend/resume
authorAbhilash Kesavan <a.kesavan@samsung.com>
Wed, 7 Nov 2012 06:10:12 +0000 (11:40 +0530)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 7 Nov 2012 08:22:21 +0000 (09:22 +0100)
The SPI driver makes a gpio_request during initialization. The requested
gpios need to be populated as part of the s3c64xx_spi_driver_data so that
they can be released during suspend and requested again during resume.

Add the missing code to save the requested gpios as part of the driver
data. This fixes a SPI driver suspend crash.

Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/spi/spi-s3c64xx.c

index 6e7a805d324d19d6bec848a8bca2f2a74a4303af..824ea892db768387f8dac2415ac031ad54990d76 100644 (file)
@@ -1112,7 +1112,7 @@ static int s3c64xx_spi_parse_dt_gpio(struct s3c64xx_spi_driver_data *sdd)
                        dev_err(dev, "invalid gpio[%d]: %d\n", idx, gpio);
                        goto free_gpio;
                }
-
+               sdd->gpios[idx] = gpio;
                ret = gpio_request(gpio, "spi-bus");
                if (ret) {
                        dev_err(dev, "gpio [%d] request failed: %d\n",