Commit e2ae0692 authored by Felipe Balbi's avatar Felipe Balbi

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: default avatarFelipe Balbi <balbi@ti.com>
parent e4c1b1ba
...@@ -514,8 +514,6 @@ static int dwc3_omap_probe(struct platform_device *pdev) ...@@ -514,8 +514,6 @@ static int dwc3_omap_probe(struct platform_device *pdev)
goto err1; goto err1;
} }
dwc3_omap_enable_irqs(omap);
ret = dwc3_omap_extcon_register(omap); ret = dwc3_omap_extcon_register(omap);
if (ret < 0) if (ret < 0)
goto err2; goto err2;
...@@ -526,6 +524,8 @@ static int dwc3_omap_probe(struct platform_device *pdev) ...@@ -526,6 +524,8 @@ static int dwc3_omap_probe(struct platform_device *pdev)
goto err3; goto err3;
} }
dwc3_omap_enable_irqs(omap);
return 0; return 0;
err3: err3:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment