diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2012-02-13 10:29:33 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-02-17 17:36:23 -0500 |
commit | bc25cf508942c56810d4fb623ef27b56ccef7783 (patch) | |
tree | 1a991dd6fc5fcbdc0ef3eebe4ef5291787dd6d30 | |
parent | 93e1ee43a72b11e1b50aab87046c131a836a4456 (diff) |
PM / Sleep: Drop suspend_stats_update()
Since suspend_stats_update() is only called from pm_suspend(),
move its code directly into that function and remove the static
inline definition from include/linux/suspend.h. Clean_up
pm_suspend() in the process.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
-rw-r--r-- | include/linux/suspend.h | 16 | ||||
-rw-r--r-- | kernel/power/suspend.c | 18 |
2 files changed, 12 insertions, 22 deletions
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index b90191894441..ac1c114c499d 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
@@ -95,22 +95,6 @@ static inline void dpm_save_failed_step(enum suspend_stat_step step) | |||
95 | } | 95 | } |
96 | 96 | ||
97 | /** | 97 | /** |
98 | * suspend_stats_update - Update success/failure statistics of suspend-to-ram | ||
99 | * | ||
100 | * @error: Value returned by enter_state() function | ||
101 | */ | ||
102 | static inline void suspend_stats_update(int error) | ||
103 | { | ||
104 | if (error) { | ||
105 | suspend_stats.fail++; | ||
106 | dpm_save_failed_errno(error); | ||
107 | } else { | ||
108 | suspend_stats.success++; | ||
109 | } | ||
110 | } | ||
111 | |||
112 | |||
113 | /** | ||
114 | * struct platform_suspend_ops - Callbacks for managing platform dependent | 98 | * struct platform_suspend_ops - Callbacks for managing platform dependent |
115 | * system sleep states. | 99 | * system sleep states. |
116 | * | 100 | * |
diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c index 4914358a0543..88e5c967370d 100644 --- a/kernel/power/suspend.c +++ b/kernel/power/suspend.c | |||
@@ -316,12 +316,18 @@ static int enter_state(suspend_state_t state) | |||
316 | */ | 316 | */ |
317 | int pm_suspend(suspend_state_t state) | 317 | int pm_suspend(suspend_state_t state) |
318 | { | 318 | { |
319 | int ret; | 319 | int error; |
320 | if (state > PM_SUSPEND_ON && state < PM_SUSPEND_MAX) { | 320 | |
321 | ret = enter_state(state); | 321 | if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX) |
322 | suspend_stats_update(ret); | 322 | return -EINVAL; |
323 | return ret; | 323 | |
324 | error = enter_state(state); | ||
325 | if (error) { | ||
326 | suspend_stats.fail++; | ||
327 | dpm_save_failed_errno(error); | ||
328 | } else { | ||
329 | suspend_stats.success++; | ||
324 | } | 330 | } |
325 | return -EINVAL; | 331 | return error; |
326 | } | 332 | } |
327 | EXPORT_SYMBOL(pm_suspend); | 333 | EXPORT_SYMBOL(pm_suspend); |