|
@@ -1728,8 +1728,12 @@ static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
|
|
* - Change autosuspend delay of hub can avoid unnecessary auto
|
|
* - Change autosuspend delay of hub can avoid unnecessary auto
|
|
|
* suspend timer for hub, also may decrease power consumption
|
|
* suspend timer for hub, also may decrease power consumption
|
|
|
* of USB bus.
|
|
* of USB bus.
|
|
|
|
|
+ *
|
|
|
|
|
+ * - If user has indicated to prevent autosuspend by passing
|
|
|
|
|
+ * usbcore.autosuspend = -1 then keep autosuspend disabled.
|
|
|
*/
|
|
*/
|
|
|
- pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
|
|
|
|
|
|
|
+ if (hdev->dev.power.autosuspend_delay >= 0)
|
|
|
|
|
+ pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
|
* Hubs have proper suspend/resume support, except for root hubs
|
|
* Hubs have proper suspend/resume support, except for root hubs
|