diff options
author | Gregory Herrero <gregory.herrero@intel.com> | 2015-09-22 13:16:48 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-10-01 17:40:17 (GMT) |
commit | 5bbf6ce0a964c77d9522cf377fd7a4c4af030378 (patch) | |
tree | 935982cb570db26a681c0ab518d7d6228a6123d0 /drivers/usb/dwc2 | |
parent | 77dbf7138d59994d50b7875deb24992f51b811b5 (diff) | |
download | linux-5bbf6ce0a964c77d9522cf377fd7a4c4af030378.tar.xz |
usb: dwc2: host: disable interrupt during stop
Disable host interrupts before synchronising dwc2 irq.
So that interrupts are not generated once controller is stopped.
Signed-off-by: Gregory Herrero <gregory.herrero@intel.com>
Signed-off-by: Mian Yousaf Kaukab <yousaf.kaukab@intel.com>
Tested-by: Robert Baldyga <r.baldyga@samsung.com>
Tested-by: Dinh Nguyen <dinguyen@opensource.altera.com>
Tested-by: John Youn <johnyoun@synopsys.com>
Acked-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc2')
-rw-r--r-- | drivers/usb/dwc2/hcd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/dwc2/hcd.c b/drivers/usb/dwc2/hcd.c index 257f957..de9d2e2 100644 --- a/drivers/usb/dwc2/hcd.c +++ b/drivers/usb/dwc2/hcd.c @@ -2350,6 +2350,9 @@ static void _dwc2_hcd_stop(struct usb_hcd *hcd) struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd); unsigned long flags; + /* Turn off all host-specific interrupts */ + dwc2_disable_host_interrupts(hsotg); + /* Wait for interrupt processing to finish */ synchronize_irq(hcd->irq); |