summaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorSarah Sharp2010-12-30 22:27:36 +0100
committerSarah Sharp2011-03-14 02:23:51 +0100
commit0c9ffe0f6286a02bf82f8d7fb7274aec2ad977f1 (patch)
treee17413d6b9451fe5ea5fa0a51ff923689d356254 /drivers/usb
parentUSB: Remove bogus USB_PORT_STAT_SUPER_SPEED symbol. (diff)
downloadkernel-qcow2-linux-0c9ffe0f6286a02bf82f8d7fb7274aec2ad977f1.tar.gz
kernel-qcow2-linux-0c9ffe0f6286a02bf82f8d7fb7274aec2ad977f1.tar.xz
kernel-qcow2-linux-0c9ffe0f6286a02bf82f8d7fb7274aec2ad977f1.zip
USB: Disable auto-suspend for USB 3.0 hubs.
USB 3.0 devices have a slightly different suspend sequence than USB 2.0/1.1 devices. There isn't support for USB 3.0 device suspend yet, so make khubd leave autosuspend disabled for USB 3.0 hubs. Make sure that USB 3.0 roothubs still have autosuspend enabled, since that path in the xHCI driver works fine. Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/core/hub.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index 13aafd1b45e5..0968157f3beb 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -1290,8 +1290,14 @@ static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
desc = intf->cur_altsetting;
hdev = interface_to_usbdev(intf);
- /* Hubs have proper suspend/resume support */
- usb_enable_autosuspend(hdev);
+ /* Hubs have proper suspend/resume support. USB 3.0 device suspend is
+ * different from USB 2.0/1.1 device suspend, and unfortunately we
+ * don't support it yet. So leave autosuspend disabled for USB 3.0
+ * external hubs for now. Enable autosuspend for USB 3.0 roothubs,
+ * since that isn't a "real" hub.
+ */
+ if (!hub_is_superspeed(hdev) || !hdev->parent)
+ usb_enable_autosuspend(hdev);
if (hdev->level == MAX_TOPO_LEVEL) {
dev_err(&intf->dev,