The patch titled gpiolib: fix request related issue has been added to the -mm tree. Its filename is gpiolib-fix-request-related-issue.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gpiolib: fix request related issue From: Magnus Damm <damm@xxxxxxxxxx> Fix request-already-requested handling in gpio_request(). Signed-off-by: Magnus Damm <damm@xxxxxxxxxx> Acked-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> [2.6.28.x] Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpio/gpiolib.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/gpio/gpiolib.c~gpiolib-fix-request-related-issue drivers/gpio/gpiolib.c --- a/drivers/gpio/gpiolib.c~gpiolib-fix-request-related-issue +++ a/drivers/gpio/gpiolib.c @@ -789,6 +789,7 @@ int gpio_request(unsigned gpio, const ch } else { status = -EBUSY; module_put(chip->owner); + goto done; } if (chip->request) { _ Patches currently in -mm which might be from damm@xxxxxxxxxx are origin.patch gpiolib-fix-request-related-issue.patch linux-next.patch early-platform-drivers-v2.patch clocksource-pass-clocksource-to-read-callback.patch clocksource-add-enable-and-disable-callbacks.patch irq-free-setup_irq-interrupt-using-free_irq.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html