/* Continue a partial initialization */
        if (type == HUB_INIT2 || type == HUB_INIT3) {
-               device_lock(hub->intfdev);
+               device_lock(&hdev->dev);
 
                /* Was the hub disconnected while we were waiting? */
                if (hub->disconnected)
                        queue_delayed_work(system_power_efficient_wq,
                                        &hub->init_work,
                                        msecs_to_jiffies(delay));
-                       device_unlock(hub->intfdev);
+                       device_unlock(&hdev->dev);
                        return;         /* Continues at init3: below */
                } else {
                        msleep(delay);
                /* Allow autosuspend if it was suppressed */
  disconnected:
                usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
-               device_unlock(hub->intfdev);
+               device_unlock(&hdev->dev);
        }
 
        kref_put(&hub->kref, hub_release);