summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2016-04-02 20:46:10 +0200
committerMarek Vasut <marex@denx.de>2016-04-10 17:18:43 +0200
commitbf313230642ca6ce1e5cb67d49f6cc72a6d752ae (patch)
tree4d404ef36d45cf9659e990768d8be8f4bdd61fd0
parent38b4a3e14397582549b3bb1b301fd9b5c7fc89d2 (diff)
downloadtalos-obmc-uboot-bf313230642ca6ce1e5cb67d49f6cc72a6d752ae.tar.gz
talos-obmc-uboot-bf313230642ca6ce1e5cb67d49f6cc72a6d752ae.zip
musb: Properly call musb_stop() on probe failure
musb_lowlevelinit(): if no device is plugged in / detected call musb_stop() to undo the preceding musb_start() call. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--drivers/usb/musb-new/musb_uboot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/musb-new/musb_uboot.c b/drivers/usb/musb-new/musb_uboot.c
index 233a0e4a5e..6ce528c81e 100644
--- a/drivers/usb/musb-new/musb_uboot.c
+++ b/drivers/usb/musb-new/musb_uboot.c
@@ -237,8 +237,10 @@ int musb_lowlevel_init(struct musb_host_data *host)
if (musb_readb(mbase, MUSB_DEVCTL) & MUSB_DEVCTL_HM)
break;
} while (get_timer(0) < timeout);
- if (get_timer(0) >= timeout)
+ if (get_timer(0) >= timeout) {
+ musb_stop(host->host);
return -ENODEV;
+ }
_musb_reset_root_port(host, NULL);
host->host->is_active = 1;
OpenPOWER on IntegriCloud