diff options
author | Chris Ball <cjb@laptop.org> | 2012-09-09 22:56:48 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-09-11 10:55:20 -0400 |
commit | 15e8a8e42966162c207bb97ed55c803bc437eeae (patch) | |
tree | e6136461d4d1bce995796a3518fe2eef08568964 | |
parent | 0d4de8f5de2a642353834b183b16b367d39ff893 (diff) |
mmc: slot-gpio: Fix missing assignment to ctx->ro_gpio
mmc_gpio_request_ro() doesn't store the requested gpio in ctx->ro_gpio.
As a result, subsequent calls to mmc_gpio_get_ro() will always fail
with -ENOSYS because the gpio number isn't available to that function.
Cc: stable <stable@vger.kernel.org>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | drivers/mmc/core/slot-gpio.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/mmc/core/slot-gpio.c b/drivers/mmc/core/slot-gpio.c index 058242916cef..08c6b3dfe080 100644 --- a/drivers/mmc/core/slot-gpio.c +++ b/drivers/mmc/core/slot-gpio.c | |||
@@ -100,7 +100,13 @@ int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio) | |||
100 | 100 | ||
101 | ctx = host->slot.handler_priv; | 101 | ctx = host->slot.handler_priv; |
102 | 102 | ||
103 | return gpio_request_one(gpio, GPIOF_DIR_IN, ctx->ro_label); | 103 | ret = gpio_request_one(gpio, GPIOF_DIR_IN, ctx->ro_label); |
104 | if (ret < 0) | ||
105 | return ret; | ||
106 | |||
107 | ctx->ro_gpio = gpio; | ||
108 | |||
109 | return 0; | ||
104 | } | 110 | } |
105 | EXPORT_SYMBOL(mmc_gpio_request_ro); | 111 | EXPORT_SYMBOL(mmc_gpio_request_ro); |
106 | 112 | ||