diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-12-02 00:34:12 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-01-05 19:43:44 -0500 |
commit | f7ba3b41e27129575201f0f9656e83fb67e86c3b (patch) | |
tree | 3d7499edac72668560510c7345785e222da8b3d0 /drivers/cpufreq | |
parent | 26ab1c62b6e1ed4720d533320d646866027ade09 (diff) |
cpufreq: Introduce cpufreq_notify_post_transition()
This introduces a new routine cpufreq_notify_post_transition() which
can be used to send POSTCHANGE notification for new freq with or
without both {PRE|POST}CHANGE notifications for last freq. This is
useful at multiple places, especially for sending transition failure
notifications.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index a42e6aec4aad..a123a731ec4e 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -320,6 +320,20 @@ void cpufreq_notify_transition(struct cpufreq_policy *policy, | |||
320 | } | 320 | } |
321 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); | 321 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); |
322 | 322 | ||
323 | /* Do post notifications when there are chances that transition has failed */ | ||
324 | void cpufreq_notify_post_transition(struct cpufreq_policy *policy, | ||
325 | struct cpufreq_freqs *freqs, int transition_failed) | ||
326 | { | ||
327 | cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE); | ||
328 | if (!transition_failed) | ||
329 | return; | ||
330 | |||
331 | swap(freqs->old, freqs->new); | ||
332 | cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE); | ||
333 | cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE); | ||
334 | } | ||
335 | EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition); | ||
336 | |||
323 | 337 | ||
324 | /********************************************************************* | 338 | /********************************************************************* |
325 | * SYSFS INTERFACE * | 339 | * SYSFS INTERFACE * |