}
 
 /**
- * __device_resume_noirq - Execute a "noirq resume" callback for given device.
+ * device_resume_noirq - Execute a "noirq resume" callback for given device.
  * @dev: Device to handle.
  * @state: PM transition of the system being carried out.
  * @async: If true, the device is being resumed asynchronously.
  * The driver of @dev will not receive interrupts while this function is being
  * executed.
  */
-static void __device_resume_noirq(struct device *dev, pm_message_t state, bool async)
+static void device_resume_noirq(struct device *dev, pm_message_t state, bool async)
 {
        pm_callback_t callback = NULL;
        const char *info = NULL;
 {
        reinit_completion(&dev->power.completion);
 
-       if (!is_async(dev))
-               return false;
-
-       get_device(dev);
+       if (is_async(dev)) {
+               dev->power.async_in_progress = true;
 
-       if (async_schedule_dev_nocall(func, dev))
-               return true;
+               get_device(dev);
 
-       put_device(dev);
+               if (async_schedule_dev_nocall(func, dev))
+                       return true;
 
+               put_device(dev);
+       }
+       /*
+        * Because async_schedule_dev_nocall() above has returned false or it
+        * has not been called at all, func() is not running and it is safe to
+        * update the async_in_progress flag without extra synchronization.
+        */
+       dev->power.async_in_progress = false;
        return false;
 }
 
 {
        struct device *dev = data;
 
-       __device_resume_noirq(dev, pm_transition, true);
+       device_resume_noirq(dev, pm_transition, true);
        put_device(dev);
 }
 
-static void device_resume_noirq(struct device *dev)
-{
-       if (dpm_async_fn(dev, async_resume_noirq))
-               return;
-
-       __device_resume_noirq(dev, pm_transition, false);
-}
-
 static void dpm_noirq_resume_devices(pm_message_t state)
 {
        struct device *dev;
        mutex_lock(&dpm_list_mtx);
        pm_transition = state;
 
+       /*
+        * Trigger the resume of "async" devices upfront so they don't have to
+        * wait for the "non-async" ones they don't depend on.
+        */
+       list_for_each_entry(dev, &dpm_noirq_list, power.entry)
+               dpm_async_fn(dev, async_resume_noirq);
+
        while (!list_empty(&dpm_noirq_list)) {
                dev = to_device(dpm_noirq_list.next);
-               get_device(dev);
                list_move_tail(&dev->power.entry, &dpm_late_early_list);
 
-               mutex_unlock(&dpm_list_mtx);
+               if (!dev->power.async_in_progress) {
+                       get_device(dev);
 
-               device_resume_noirq(dev);
+                       mutex_unlock(&dpm_list_mtx);
 
-               put_device(dev);
+                       device_resume_noirq(dev, state, false);
 
-               mutex_lock(&dpm_list_mtx);
+                       put_device(dev);
+
+                       mutex_lock(&dpm_list_mtx);
+               }
        }
        mutex_unlock(&dpm_list_mtx);
        async_synchronize_full();
 }
 
 /**
- * __device_resume_early - Execute an "early resume" callback for given device.
+ * device_resume_early - Execute an "early resume" callback for given device.
  * @dev: Device to handle.
  * @state: PM transition of the system being carried out.
  * @async: If true, the device is being resumed asynchronously.
  *
  * Runtime PM is disabled for @dev while this function is being executed.
  */
-static void __device_resume_early(struct device *dev, pm_message_t state, bool async)
+static void device_resume_early(struct device *dev, pm_message_t state, bool async)
 {
        pm_callback_t callback = NULL;
        const char *info = NULL;
 {
        struct device *dev = data;
 
-       __device_resume_early(dev, pm_transition, true);
+       device_resume_early(dev, pm_transition, true);
        put_device(dev);
 }
 
-static void device_resume_early(struct device *dev)
-{
-       if (dpm_async_fn(dev, async_resume_early))
-               return;
-
-       __device_resume_early(dev, pm_transition, false);
-}
-
 /**
  * dpm_resume_early - Execute "early resume" callbacks for all devices.
  * @state: PM transition of the system being carried out.
        mutex_lock(&dpm_list_mtx);
        pm_transition = state;
 
+       /*
+        * Trigger the resume of "async" devices upfront so they don't have to
+        * wait for the "non-async" ones they don't depend on.
+        */
+       list_for_each_entry(dev, &dpm_late_early_list, power.entry)
+               dpm_async_fn(dev, async_resume_early);
+
        while (!list_empty(&dpm_late_early_list)) {
                dev = to_device(dpm_late_early_list.next);
-               get_device(dev);
                list_move_tail(&dev->power.entry, &dpm_suspended_list);
 
-               mutex_unlock(&dpm_list_mtx);
+               if (!dev->power.async_in_progress) {
+                       get_device(dev);
 
-               device_resume_early(dev);
+                       mutex_unlock(&dpm_list_mtx);
 
-               put_device(dev);
+                       device_resume_early(dev, state, false);
 
-               mutex_lock(&dpm_list_mtx);
+                       put_device(dev);
+
+                       mutex_lock(&dpm_list_mtx);
+               }
        }
        mutex_unlock(&dpm_list_mtx);
        async_synchronize_full();
 EXPORT_SYMBOL_GPL(dpm_resume_start);
 
 /**
- * __device_resume - Execute "resume" callbacks for given device.
+ * device_resume - Execute "resume" callbacks for given device.
  * @dev: Device to handle.
  * @state: PM transition of the system being carried out.
  * @async: If true, the device is being resumed asynchronously.
  */
-static void __device_resume(struct device *dev, pm_message_t state, bool async)
+static void device_resume(struct device *dev, pm_message_t state, bool async)
 {
        pm_callback_t callback = NULL;
        const char *info = NULL;
 {
        struct device *dev = data;
 
-       __device_resume(dev, pm_transition, true);
+       device_resume(dev, pm_transition, true);
        put_device(dev);
 }
 
-static void device_resume(struct device *dev)
-{
-       if (dpm_async_fn(dev, async_resume))
-               return;
-
-       __device_resume(dev, pm_transition, false);
-}
-
 /**
  * dpm_resume - Execute "resume" callbacks for non-sysdev devices.
  * @state: PM transition of the system being carried out.
        pm_transition = state;
        async_error = 0;
 
+       /*
+        * Trigger the resume of "async" devices upfront so they don't have to
+        * wait for the "non-async" ones they don't depend on.
+        */
+       list_for_each_entry(dev, &dpm_suspended_list, power.entry)
+               dpm_async_fn(dev, async_resume);
+
        while (!list_empty(&dpm_suspended_list)) {
                dev = to_device(dpm_suspended_list.next);
 
                get_device(dev);
 
-               mutex_unlock(&dpm_list_mtx);
+               if (!dev->power.async_in_progress) {
+                       mutex_unlock(&dpm_list_mtx);
 
-               device_resume(dev);
+                       device_resume(dev, state, false);
 
-               mutex_lock(&dpm_list_mtx);
+                       mutex_lock(&dpm_list_mtx);
+               }
 
                if (!list_empty(&dev->power.entry))
                        list_move_tail(&dev->power.entry, &dpm_prepared_list);