From: Felipe Balbi Date: Tue, 25 Aug 2015 17:07:45 +0000 (-0500) Subject: usb: dwc3: omap: enable irqs lately X-Git-Tag: v4.3-rc3~8^2~14^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2ae0692bf6f71c8b841889b655d0dc08413e4e3;p=thirdparty%2Flinux.git usb: dwc3: omap: enable irqs lately If we enable IRQs before requesting our extcon device, we might fall into a situation where and IRQ fires before we're ready to handle it. Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c index a5a1b7c457433..22e9606d8e081 100644 --- a/drivers/usb/dwc3/dwc3-omap.c +++ b/drivers/usb/dwc3/dwc3-omap.c @@ -514,8 +514,6 @@ static int dwc3_omap_probe(struct platform_device *pdev) goto err1; } - dwc3_omap_enable_irqs(omap); - ret = dwc3_omap_extcon_register(omap); if (ret < 0) goto err2; @@ -526,6 +524,8 @@ static int dwc3_omap_probe(struct platform_device *pdev) goto err3; } + dwc3_omap_enable_irqs(omap); + return 0; err3: