mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 23:23:53 +02:00
usb: musb: blackfin: call gpio_free() on error path in musb_platform_init()
commit 00be545e49 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>
This commit is contained in:
parent
605c6c2c11
commit
2e44efff4d
|
|
@ -248,8 +248,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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user