提交 bc25cf50 编写于 作者: R Rafael J. Wysocki

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: NRafael J. Wysocki <rjw@sisk.pl>
Acked-by: NSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
上级 93e1ee43
...@@ -94,22 +94,6 @@ static inline void dpm_save_failed_step(enum suspend_stat_step step) ...@@ -94,22 +94,6 @@ static inline void dpm_save_failed_step(enum suspend_stat_step step)
suspend_stats.last_failed_step %= REC_FAILED_NUM; suspend_stats.last_failed_step %= REC_FAILED_NUM;
} }
/**
* suspend_stats_update - Update success/failure statistics of suspend-to-ram
*
* @error: Value returned by enter_state() function
*/
static inline void suspend_stats_update(int error)
{
if (error) {
suspend_stats.fail++;
dpm_save_failed_errno(error);
} else {
suspend_stats.success++;
}
}
/** /**
* struct platform_suspend_ops - Callbacks for managing platform dependent * struct platform_suspend_ops - Callbacks for managing platform dependent
* system sleep states. * system sleep states.
......
...@@ -316,12 +316,18 @@ static int enter_state(suspend_state_t state) ...@@ -316,12 +316,18 @@ static int enter_state(suspend_state_t state)
*/ */
int pm_suspend(suspend_state_t state) int pm_suspend(suspend_state_t state)
{ {
int ret; int error;
if (state > PM_SUSPEND_ON && state < PM_SUSPEND_MAX) {
ret = enter_state(state); if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX)
suspend_stats_update(ret); return -EINVAL;
return ret;
error = enter_state(state);
if (error) {
suspend_stats.fail++;
dpm_save_failed_errno(error);
} else {
suspend_stats.success++;
} }
return -EINVAL; return error;
} }
EXPORT_SYMBOL(pm_suspend); EXPORT_SYMBOL(pm_suspend);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册