aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/r8a66597-hcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/r8a66597-hcd.c')
-rw-r--r--drivers/usb/host/r8a66597-hcd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c
index 2ad004ae747c..47b1322c7a77 100644
--- a/drivers/usb/host/r8a66597-hcd.c
+++ b/drivers/usb/host/r8a66597-hcd.c
@@ -2514,6 +2514,7 @@ static int r8a66597_probe(struct platform_device *pdev)
2514 dev_err(&pdev->dev, "Failed to add hcd\n"); 2514 dev_err(&pdev->dev, "Failed to add hcd\n");
2515 goto clean_up3; 2515 goto clean_up3;
2516 } 2516 }
2517 device_wakeup_enable(hcd->self.controller);
2517 2518
2518 return 0; 2519 return 0;
2519 2520
@@ -2534,7 +2535,7 @@ static struct platform_driver r8a66597_driver = {
2534 .probe = r8a66597_probe, 2535 .probe = r8a66597_probe,
2535 .remove = r8a66597_remove, 2536 .remove = r8a66597_remove,
2536 .driver = { 2537 .driver = {
2537 .name = (char *) hcd_name, 2538 .name = hcd_name,
2538 .owner = THIS_MODULE, 2539 .owner = THIS_MODULE,
2539 .pm = R8A66597_DEV_PM_OPS, 2540 .pm = R8A66597_DEV_PM_OPS,
2540 }, 2541 },