|
@@ -1055,11 +1055,8 @@ static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
|
|
|
device_lock(hub->intfdev);
|
|
|
|
|
|
/* Was the hub disconnected while we were waiting? */
|
|
|
- if (hub->disconnected) {
|
|
|
- device_unlock(hub->intfdev);
|
|
|
- kref_put(&hub->kref, hub_release);
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (hub->disconnected)
|
|
|
+ goto disconnected;
|
|
|
if (type == HUB_INIT2)
|
|
|
goto init2;
|
|
|
goto init3;
|
|
@@ -1281,12 +1278,12 @@ static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
|
|
|
/* Scan all ports that need attention */
|
|
|
kick_hub_wq(hub);
|
|
|
|
|
|
- /* Allow autosuspend if it was suppressed */
|
|
|
- if (type <= HUB_INIT3)
|
|
|
+ if (type == HUB_INIT2 || type == HUB_INIT3) {
|
|
|
+ /* Allow autosuspend if it was suppressed */
|
|
|
+ disconnected:
|
|
|
usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
|
|
|
-
|
|
|
- if (type == HUB_INIT2 || type == HUB_INIT3)
|
|
|
device_unlock(hub->intfdev);
|
|
|
+ }
|
|
|
|
|
|
kref_put(&hub->kref, hub_release);
|
|
|
}
|