diff options
Diffstat (limited to 'drivers/usb/host/ehci-sh.c')
| -rw-r--r-- | drivers/usb/host/ehci-sh.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-sh.c b/drivers/usb/host/ehci-sh.c index 93e59a13bc1..9b9b9f5b016 100644 --- a/drivers/usb/host/ehci-sh.c +++ b/drivers/usb/host/ehci-sh.c @@ -36,7 +36,7 @@ static const struct hc_driver ehci_sh_hc_driver = {  	 * generic hardware linkage  	 */  	.irq				= ehci_irq, -	.flags				= HCD_USB2 | HCD_MEMORY, +	.flags				= HCD_USB2 | HCD_MEMORY | HCD_BH,  	/*  	 * basic lifecycle operations @@ -151,6 +151,7 @@ static int ehci_hcd_sh_probe(struct platform_device *pdev)  		dev_err(&pdev->dev, "Failed to add hcd");  		goto fail_add_hcd;  	} +	device_wakeup_enable(hcd->self.controller);  	priv->hcd = hcd;  	platform_set_drvdata(pdev, priv);  | 
