|
@@ -187,7 +187,8 @@ extern int __cpufreq_driver_target(struct cpufreq_policy *policy,
|
|
|
unsigned int relation);
|
|
|
|
|
|
|
|
|
-extern int __cpufreq_driver_getavg(struct cpufreq_policy *policy);
|
|
|
+extern int __cpufreq_driver_getavg(struct cpufreq_policy *policy,
|
|
|
+ unsigned int cpu);
|
|
|
|
|
|
int cpufreq_register_governor(struct cpufreq_governor *governor);
|
|
|
void cpufreq_unregister_governor(struct cpufreq_governor *governor);
|
|
@@ -226,7 +227,9 @@ struct cpufreq_driver {
|
|
|
unsigned int (*get) (unsigned int cpu);
|
|
|
|
|
|
/* optional */
|
|
|
- unsigned int (*getavg) (unsigned int cpu);
|
|
|
+ unsigned int (*getavg) (struct cpufreq_policy *policy,
|
|
|
+ unsigned int cpu);
|
|
|
+
|
|
|
int (*exit) (struct cpufreq_policy *policy);
|
|
|
int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg);
|
|
|
int (*resume) (struct cpufreq_policy *policy);
|