From: Abhilash Kesavan Date: Mon, 19 Nov 2012 10:18:46 +0000 (+0530) Subject: i2c: s3c2410: Fix code to free gpios X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3b2f3ceb3c7f4a8c2d11aa7652842e5ce1b0dcc3;p=linux-beck.git i2c: s3c2410: Fix code to free gpios Store the requested gpios so that they can be freed on error/removal. Signed-off-by: Abhilash Kesavan Signed-off-by: Wolfram Sang --- diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 081e261ac847..16592e5ab08a 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -856,6 +856,7 @@ static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c) dev_err(i2c->dev, "invalid gpio[%d]: %d\n", idx, gpio); goto free_gpio; } + i2c->gpios[idx] = gpio; ret = gpio_request(gpio, "i2c-bus"); if (ret) {