diff options
-rw-r--r-- | drivers/usb/host/ohci-pxa27x.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c index 61800742fc07..bbc0c3b720b2 100644 --- a/drivers/usb/host/ohci-pxa27x.c +++ b/drivers/usb/host/ohci-pxa27x.c | |||
@@ -497,6 +497,7 @@ static int ohci_hcd_pxa27x_drv_resume(struct device *dev) | |||
497 | { | 497 | { |
498 | struct usb_hcd *hcd = dev_get_drvdata(dev); | 498 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
499 | struct pxa27x_ohci *ohci = to_pxa27x_ohci(hcd); | 499 | struct pxa27x_ohci *ohci = to_pxa27x_ohci(hcd); |
500 | struct pxaohci_platform_data *inf = dev->platform_data; | ||
500 | int status; | 501 | int status; |
501 | 502 | ||
502 | if (time_before(jiffies, ohci->ohci.next_statechange)) | 503 | if (time_before(jiffies, ohci->ohci.next_statechange)) |
@@ -506,6 +507,9 @@ static int ohci_hcd_pxa27x_drv_resume(struct device *dev) | |||
506 | if ((status = pxa27x_start_hc(ohci, dev)) < 0) | 507 | if ((status = pxa27x_start_hc(ohci, dev)) < 0) |
507 | return status; | 508 | return status; |
508 | 509 | ||
510 | /* Select Power Management Mode */ | ||
511 | pxa27x_ohci_select_pmm(ohci, inf->port_mode); | ||
512 | |||
509 | ohci_finish_controller_resume(hcd); | 513 | ohci_finish_controller_resume(hcd); |
510 | return 0; | 514 | return 0; |
511 | } | 515 | } |