[PATCH] gpiolib: request fix V2

From: Magnus Damm
Date: Fri Jan 16 2009 - 02:36:22 EST


From: Magnus Damm <damm@xxxxxxxxxx>

Fix request related issue in gpiolib:
- fix request-already-requested handling in gpio_request()

Signed-off-by: Magnus Damm <damm@xxxxxxxxxx>
---

Changes since V1:
- dropped the gpio_direction_input/output fixes

drivers/gpio/gpiolib.c | 1 +
1 file changed, 1 insertion(+)

--- 0001/drivers/gpio/gpiolib.c
+++ work/drivers/gpio/gpiolib.c 2008-12-26 13:09:50.000000000 +0900
@@ -789,6 +789,7 @@ int gpio_request(unsigned gpio, const ch
} else {
status = -EBUSY;
module_put(chip->owner);
+ goto done;
}

if (chip->request) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/