diff options
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ehci-hub.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 6fef1ee7d101..818647c33da8 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
@@ -209,6 +209,11 @@ static int ehci_bus_suspend (struct usb_hcd *hcd) | |||
209 | 209 | ||
210 | ehci->next_statechange = jiffies + msecs_to_jiffies(10); | 210 | ehci->next_statechange = jiffies + msecs_to_jiffies(10); |
211 | spin_unlock_irq (&ehci->lock); | 211 | spin_unlock_irq (&ehci->lock); |
212 | |||
213 | /* ehci_work() may have re-enabled the watchdog timer, which we do not | ||
214 | * want, and so we must delete any pending watchdog timer events. | ||
215 | */ | ||
216 | del_timer_sync(&ehci->watchdog); | ||
212 | return 0; | 217 | return 0; |
213 | } | 218 | } |
214 | 219 | ||