diff options
Diffstat (limited to 'drivers/base/power/main.c')
| -rw-r--r-- | drivers/base/power/main.c | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index 276d5a701dc3..31b526661ec4 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c | |||
| @@ -51,6 +51,8 @@ static pm_message_t pm_transition; | |||
| 51 | */ | 51 | */ |
| 52 | static bool transition_started; | 52 | static bool transition_started; |
| 53 | 53 | ||
| 54 | static int async_error; | ||
| 55 | |||
| 54 | /** | 56 | /** |
| 55 | * device_pm_init - Initialize the PM-related part of a device object. | 57 | * device_pm_init - Initialize the PM-related part of a device object. |
| 56 | * @dev: Device object being initialized. | 58 | * @dev: Device object being initialized. |
| @@ -60,7 +62,8 @@ void device_pm_init(struct device *dev) | |||
| 60 | dev->power.status = DPM_ON; | 62 | dev->power.status = DPM_ON; |
| 61 | init_completion(&dev->power.completion); | 63 | init_completion(&dev->power.completion); |
| 62 | complete_all(&dev->power.completion); | 64 | complete_all(&dev->power.completion); |
| 63 | dev->power.wakeup_count = 0; | 65 | dev->power.wakeup = NULL; |
| 66 | spin_lock_init(&dev->power.lock); | ||
| 64 | pm_runtime_init(dev); | 67 | pm_runtime_init(dev); |
| 65 | } | 68 | } |
| 66 | 69 | ||
| @@ -120,6 +123,7 @@ void device_pm_remove(struct device *dev) | |||
| 120 | mutex_lock(&dpm_list_mtx); | 123 | mutex_lock(&dpm_list_mtx); |
| 121 | list_del_init(&dev->power.entry); | 124 | list_del_init(&dev->power.entry); |
| 122 | mutex_unlock(&dpm_list_mtx); | 125 | mutex_unlock(&dpm_list_mtx); |
| 126 | device_wakeup_disable(dev); | ||
| 123 | pm_runtime_remove(dev); | 127 | pm_runtime_remove(dev); |
| 124 | } | 128 | } |
| 125 | 129 | ||
| @@ -407,7 +411,7 @@ static void pm_dev_err(struct device *dev, pm_message_t state, char *info, | |||
| 407 | static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info) | 411 | static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info) |
| 408 | { | 412 | { |
| 409 | ktime_t calltime; | 413 | ktime_t calltime; |
| 410 | s64 usecs64; | 414 | u64 usecs64; |
| 411 | int usecs; | 415 | int usecs; |
| 412 | 416 | ||
| 413 | calltime = ktime_get(); | 417 | calltime = ktime_get(); |
| @@ -600,6 +604,7 @@ static void dpm_resume(pm_message_t state) | |||
| 600 | INIT_LIST_HEAD(&list); | 604 | INIT_LIST_HEAD(&list); |
| 601 | mutex_lock(&dpm_list_mtx); | 605 | mutex_lock(&dpm_list_mtx); |
| 602 | pm_transition = state; | 606 | pm_transition = state; |
| 607 | async_error = 0; | ||
| 603 | 608 | ||
| 604 | list_for_each_entry(dev, &dpm_list, power.entry) { | 609 | list_for_each_entry(dev, &dpm_list, power.entry) { |
| 605 | if (dev->power.status < DPM_OFF) | 610 | if (dev->power.status < DPM_OFF) |
| @@ -829,8 +834,6 @@ static int legacy_suspend(struct device *dev, pm_message_t state, | |||
| 829 | return error; | 834 | return error; |
| 830 | } | 835 | } |
| 831 | 836 | ||
| 832 | static int async_error; | ||
| 833 | |||
| 834 | /** | 837 | /** |
| 835 | * device_suspend - Execute "suspend" callbacks for given device. | 838 | * device_suspend - Execute "suspend" callbacks for given device. |
| 836 | * @dev: Device to handle. | 839 | * @dev: Device to handle. |
| @@ -885,6 +888,9 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async) | |||
| 885 | device_unlock(dev); | 888 | device_unlock(dev); |
| 886 | complete_all(&dev->power.completion); | 889 | complete_all(&dev->power.completion); |
| 887 | 890 | ||
| 891 | if (error) | ||
| 892 | async_error = error; | ||
| 893 | |||
| 888 | return error; | 894 | return error; |
| 889 | } | 895 | } |
| 890 | 896 | ||
| @@ -894,10 +900,8 @@ static void async_suspend(void *data, async_cookie_t cookie) | |||
| 894 | int error; | 900 | int error; |
| 895 | 901 | ||
| 896 | error = __device_suspend(dev, pm_transition, true); | 902 | error = __device_suspend(dev, pm_transition, true); |
| 897 | if (error) { | 903 | if (error) |
| 898 | pm_dev_err(dev, pm_transition, " async", error); | 904 | pm_dev_err(dev, pm_transition, " async", error); |
| 899 | async_error = error; | ||
| 900 | } | ||
| 901 | 905 | ||
| 902 | put_device(dev); | 906 | put_device(dev); |
| 903 | } | 907 | } |
| @@ -1085,8 +1089,9 @@ EXPORT_SYMBOL_GPL(__suspend_report_result); | |||
| 1085 | * @dev: Device to wait for. | 1089 | * @dev: Device to wait for. |
| 1086 | * @subordinate: Device that needs to wait for @dev. | 1090 | * @subordinate: Device that needs to wait for @dev. |
| 1087 | */ | 1091 | */ |
| 1088 | void device_pm_wait_for_dev(struct device *subordinate, struct device *dev) | 1092 | int device_pm_wait_for_dev(struct device *subordinate, struct device *dev) |
| 1089 | { | 1093 | { |
| 1090 | dpm_wait(dev, subordinate->power.async_suspend); | 1094 | dpm_wait(dev, subordinate->power.async_suspend); |
| 1095 | return async_error; | ||
| 1091 | } | 1096 | } |
| 1092 | EXPORT_SYMBOL_GPL(device_pm_wait_for_dev); | 1097 | EXPORT_SYMBOL_GPL(device_pm_wait_for_dev); |
