status = 0;
        }
        if (status) {
+               /* Check if the port has been suspended for the timeout case
+                * to prevent the suspended port from incorrect handling.
+                */
+               if (status == -ETIMEDOUT) {
+                       int ret;
+                       u16 portstatus, portchange;
+
+                       portstatus = portchange = 0;
+                       ret = hub_port_status(hub, port1, &portstatus,
+                                       &portchange);
+
+                       dev_dbg(&port_dev->dev,
+                               "suspend timeout, status %04x\n", portstatus);
+
+                       if (ret == 0 && port_is_suspended(hub, portstatus)) {
+                               status = 0;
+                               goto suspend_done;
+                       }
+               }
+
                dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
 
                /* Try to enable USB3 LTM again */
                if (!PMSG_IS_AUTO(msg))
                        status = 0;
        } else {
+ suspend_done:
                dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
                                (PMSG_IS_AUTO(msg) ? "auto-" : ""),
                                udev->do_remote_wakeup);