]> git.hungrycats.org Git - linux/commitdiff
dwc_otg: Fix for occasional lockup on boot when doing a USB reset
authorpopcornmix <popcornmix@gmail.com>
Fri, 20 Sep 2013 18:07:56 +0000 (19:07 +0100)
committerpopcornmix <popcornmix@gmail.com>
Fri, 20 Sep 2013 18:07:56 +0000 (19:07 +0100)
drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c

index 509b629f1e229f9dec9806e0418504637ca7d08c..57092d2f2e879e6ab8288d91c330a4a3c4d5a902 100644 (file)
@@ -742,8 +742,8 @@ int32_t dwc_otg_hcd_handle_sof_intr(dwc_otg_hcd_t * hcd)
        }
 
        /* Clear interrupt */
-       //gintsts.b.sofintr = 1;
-       //DWC_WRITE_REG32(&hcd->core_if->core_global_regs->gintsts, gintsts.d32);
+       gintsts.b.sofintr = 1;
+       DWC_WRITE_REG32(&hcd->core_if->core_global_regs->gintsts, gintsts.d32);
 
        return 1;
 }