diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2019-07-23 11:44:09 +0530 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-09-02 22:44:04 +0200 |
commit | df0eea4488081e0698b0b58ccd1e8c8823e22841 (patch) | |
tree | 1bb19989b7ab8eb6706baf4622782eed5dc8d197 /include/linux/cpufreq.h | |
parent | d15ce412737accaba5e4c7d653b184772da47365 (diff) | |
download | linux-df0eea4488081e0698b0b58ccd1e8c8823e22841.tar.gz linux-df0eea4488081e0698b0b58ccd1e8c8823e22841.tar.bz2 linux-df0eea4488081e0698b0b58ccd1e8c8823e22841.zip |
cpufreq: Remove CPUFREQ_ADJUST and CPUFREQ_NOTIFY policy notifier events
No driver makes reference to these events now, remove them and the code
related to them.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/cpufreq.h')
-rw-r--r-- | include/linux/cpufreq.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index afc10384a681..c57e88e85c41 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h @@ -456,10 +456,8 @@ static inline void cpufreq_resume(void) {} #define CPUFREQ_POSTCHANGE (1) /* Policy Notifiers */ -#define CPUFREQ_ADJUST (0) -#define CPUFREQ_NOTIFY (1) -#define CPUFREQ_CREATE_POLICY (2) -#define CPUFREQ_REMOVE_POLICY (3) +#define CPUFREQ_CREATE_POLICY (0) +#define CPUFREQ_REMOVE_POLICY (1) #ifdef CONFIG_CPU_FREQ int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); |