aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-02-17 20:22:42 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-03-09 08:41:07 -0500
commit8434dadbb457813a127f56d9f0fb7d22035027b9 (patch)
treebbc8da552a594d1b099730aea2c4311d076bd71e /drivers/cpufreq
parent702c9e542a25cf95683c08c56e711eddb80020ac (diff)
cpufreq: governor: Drop unused governor callback and data fields
After some previous changes, the ->get_cpu_dbs_info_s governor callback and the "governor" field in struct dbs_governor (whose value represents the governor type) are not used any more, so drop them. Also drop the unused gov_ops field from struct dbs_governor. No functional changes. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/cpufreq_conservative.c2
-rw-r--r--drivers/cpufreq/cpufreq_governor.h15
-rw-r--r--drivers/cpufreq/cpufreq_ondemand.c3
3 files changed, 1 insertions, 19 deletions
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c
index c11fe95152de..cdc753139861 100644
--- a/drivers/cpufreq/cpufreq_conservative.c
+++ b/drivers/cpufreq/cpufreq_conservative.c
@@ -296,10 +296,8 @@ static struct dbs_governor cs_dbs_gov = {
296 .max_transition_latency = TRANSITION_LATENCY_LIMIT, 296 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
297 .owner = THIS_MODULE, 297 .owner = THIS_MODULE,
298 }, 298 },
299 .governor = GOV_CONSERVATIVE,
300 .kobj_type = { .default_attrs = cs_attributes }, 299 .kobj_type = { .default_attrs = cs_attributes },
301 .get_cpu_cdbs = get_cpu_cdbs, 300 .get_cpu_cdbs = get_cpu_cdbs,
302 .get_cpu_dbs_info_s = get_cpu_dbs_info_s,
303 .gov_dbs_timer = cs_dbs_timer, 301 .gov_dbs_timer = cs_dbs_timer,
304 .init = cs_init, 302 .init = cs_init,
305 .exit = cs_exit, 303 .exit = cs_exit,
diff --git a/drivers/cpufreq/cpufreq_governor.h b/drivers/cpufreq/cpufreq_governor.h
index 2ae0ad50ca3d..ee46f34f04d7 100644
--- a/drivers/cpufreq/cpufreq_governor.h
+++ b/drivers/cpufreq/cpufreq_governor.h
@@ -46,11 +46,6 @@ enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE};
46static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \ 46static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \
47{ \ 47{ \
48 return &per_cpu(_dbs_info, cpu).cdbs; \ 48 return &per_cpu(_dbs_info, cpu).cdbs; \
49} \
50 \
51static void *get_cpu_dbs_info_s(int cpu) \
52{ \
53 return &per_cpu(_dbs_info, cpu); \
54} 49}
55 50
56/* 51/*
@@ -188,10 +183,6 @@ struct cs_dbs_tuners {
188/* Common Governor data across policies */ 183/* Common Governor data across policies */
189struct dbs_governor { 184struct dbs_governor {
190 struct cpufreq_governor gov; 185 struct cpufreq_governor gov;
191
192 #define GOV_ONDEMAND 0
193 #define GOV_CONSERVATIVE 1
194 int governor;
195 struct kobj_type kobj_type; 186 struct kobj_type kobj_type;
196 187
197 /* 188 /*
@@ -201,14 +192,10 @@ struct dbs_governor {
201 struct dbs_data *gdbs_data; 192 struct dbs_data *gdbs_data;
202 193
203 struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu); 194 struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu);
204 void *(*get_cpu_dbs_info_s)(int cpu);
205 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy); 195 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy);
206 int (*init)(struct dbs_data *dbs_data, bool notify); 196 int (*init)(struct dbs_data *dbs_data, bool notify);
207 void (*exit)(struct dbs_data *dbs_data, bool notify); 197 void (*exit)(struct dbs_data *dbs_data, bool notify);
208 void (*start)(struct cpufreq_policy *policy); 198 void (*start)(struct cpufreq_policy *policy);
209
210 /* Governor specific ops, see below */
211 void *gov_ops;
212}; 199};
213 200
214static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy) 201static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
@@ -216,7 +203,7 @@ static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy
216 return container_of(policy->governor, struct dbs_governor, gov); 203 return container_of(policy->governor, struct dbs_governor, gov);
217} 204}
218 205
219/* Governor specific ops, will be passed to dbs_data->gov_ops */ 206/* Governor specific operations */
220struct od_ops { 207struct od_ops {
221 void (*powersave_bias_init_cpu)(int cpu); 208 void (*powersave_bias_init_cpu)(int cpu);
222 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy, 209 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c
index de069f80b619..41d239c8dbf6 100644
--- a/drivers/cpufreq/cpufreq_ondemand.c
+++ b/drivers/cpufreq/cpufreq_ondemand.c
@@ -433,12 +433,9 @@ static struct dbs_governor od_dbs_gov = {
433 .max_transition_latency = TRANSITION_LATENCY_LIMIT, 433 .max_transition_latency = TRANSITION_LATENCY_LIMIT,
434 .owner = THIS_MODULE, 434 .owner = THIS_MODULE,
435 }, 435 },
436 .governor = GOV_ONDEMAND,
437 .kobj_type = { .default_attrs = od_attributes }, 436 .kobj_type = { .default_attrs = od_attributes },
438 .get_cpu_cdbs = get_cpu_cdbs, 437 .get_cpu_cdbs = get_cpu_cdbs,
439 .get_cpu_dbs_info_s = get_cpu_dbs_info_s,
440 .gov_dbs_timer = od_dbs_timer, 438 .gov_dbs_timer = od_dbs_timer,
441 .gov_ops = &od_ops,
442 .init = od_init, 439 .init = od_init,
443 .exit = od_exit, 440 .exit = od_exit,
444 .start = od_start, 441 .start = od_start,