aboutsummaryrefslogtreecommitdiff
path: root/include/linux/suspend.h
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2012-02-13 16:29:33 +0100
committerRafael J. Wysocki <rjw@sisk.pl>2012-02-17 23:36:23 +0100
commitbc25cf508942c56810d4fb623ef27b56ccef7783 (patch)
tree1a991dd6fc5fcbdc0ef3eebe4ef5291787dd6d30 /include/linux/suspend.h
parent93e1ee43a72b11e1b50aab87046c131a836a4456 (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>
Diffstat (limited to 'include/linux/suspend.h')
-rw-r--r--include/linux/suspend.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/linux/suspend.h b/include/linux/suspend.h
index b9019189444..ac1c114c499 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)
}
/**
- * 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
* system sleep states.
*