]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: musb: blackfin: call gpio_free() on error path in musb_platform_init()
authorSergei Shtylyov <sshtylyov@ru.mvista.com>
Wed, 29 Sep 2010 06:54:31 +0000 (09:54 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 21 Mar 2011 19:43:34 +0000 (12:43 -0700)
commit 00be545e49d83485d49a598d3b7e090088934be8 upstream.

Blackfin's musb_platform_init() needs to call gpio_free() for error cleanup iff
otg_get_transceiver() call returns NULL.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/musb/blackfin.c

index ad26e656966510f84ef0244a7f57a56a3faa82c8..e278b07cc579c7d4af4fd30c7a6a2b774eedf48e 100644 (file)
@@ -298,8 +298,10 @@ int __init musb_platform_init(struct musb *musb)
 
        usb_nop_xceiv_register();
        musb->xceiv = otg_get_transceiver();
-       if (!musb->xceiv)
+       if (!musb->xceiv) {
+               gpio_free(musb->config->gpio_vrsel);
                return -ENODEV;
+       }
 
        if (ANOMALY_05000346) {
                bfin_write_USB_APHY_CALIB(ANOMALY_05000346_value);