diff options
author | Marcos Paulo de Souza <marcos.mage@gmail.com> | 2012-02-04 16:26:13 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-02-09 17:55:43 -0500 |
commit | 8916e3702ec422b57cc549fbae3986106292100f (patch) | |
tree | 476b8f1079e607518d8be5333abfd58ef53d792f /include/linux/suspend.h | |
parent | 3ed3c7b559f3cae7a5a92860a127ceb0cafd5a9c (diff) |
PM / Suspend: Avoid code duplication in suspend statistics update
The code
if (error) {
suspend_stats.fail++;
dpm_save_failed_errno(error);
} else
suspend_stats.success++;
Appears in the kernel/power/main.c and kernel/power/suspend.c.
This patch just creates a new function to avoid duplicated code.
Suggested-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Marcos Paulo de Souza <marcos.mage@gmail.com>
Acked-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'include/linux/suspend.h')
-rw-r--r-- | include/linux/suspend.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index ac1c114c499d..b90191894441 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
@@ -95,6 +95,22 @@ 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 | /** | ||
98 | * struct platform_suspend_ops - Callbacks for managing platform dependent | 114 | * struct platform_suspend_ops - Callbacks for managing platform dependent |
99 | * system sleep states. | 115 | * system sleep states. |
100 | * | 116 | * |