diff options
Diffstat (limited to 'include/linux/cpufreq.h')
-rw-r--r-- | include/linux/cpufreq.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 4d078cebafd2..2ee4888c1f47 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
@@ -66,8 +66,6 @@ struct cpufreq_policy { | |||
66 | unsigned int shared_type; /* ACPI: ANY or ALL affected CPUs | 66 | unsigned int shared_type; /* ACPI: ANY or ALL affected CPUs |
67 | should set cpufreq */ | 67 | should set cpufreq */ |
68 | unsigned int cpu; /* cpu nr of CPU managing this policy */ | 68 | unsigned int cpu; /* cpu nr of CPU managing this policy */ |
69 | unsigned int last_cpu; /* cpu nr of previous CPU that managed | ||
70 | * this policy */ | ||
71 | struct clk *clk; | 69 | struct clk *clk; |
72 | struct cpufreq_cpuinfo cpuinfo;/* see above */ | 70 | struct cpufreq_cpuinfo cpuinfo;/* see above */ |
73 | 71 | ||
@@ -113,6 +111,9 @@ struct cpufreq_policy { | |||
113 | wait_queue_head_t transition_wait; | 111 | wait_queue_head_t transition_wait; |
114 | struct task_struct *transition_task; /* Task which is doing the transition */ | 112 | struct task_struct *transition_task; /* Task which is doing the transition */ |
115 | 113 | ||
114 | /* cpufreq-stats */ | ||
115 | struct cpufreq_stats *stats; | ||
116 | |||
116 | /* For cpufreq driver's internal use */ | 117 | /* For cpufreq driver's internal use */ |
117 | void *driver_data; | 118 | void *driver_data; |
118 | }; | 119 | }; |
@@ -367,9 +368,8 @@ static inline void cpufreq_resume(void) {} | |||
367 | #define CPUFREQ_INCOMPATIBLE (1) | 368 | #define CPUFREQ_INCOMPATIBLE (1) |
368 | #define CPUFREQ_NOTIFY (2) | 369 | #define CPUFREQ_NOTIFY (2) |
369 | #define CPUFREQ_START (3) | 370 | #define CPUFREQ_START (3) |
370 | #define CPUFREQ_UPDATE_POLICY_CPU (4) | 371 | #define CPUFREQ_CREATE_POLICY (4) |
371 | #define CPUFREQ_CREATE_POLICY (5) | 372 | #define CPUFREQ_REMOVE_POLICY (5) |
372 | #define CPUFREQ_REMOVE_POLICY (6) | ||
373 | 373 | ||
374 | #ifdef CONFIG_CPU_FREQ | 374 | #ifdef CONFIG_CPU_FREQ |
375 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); | 375 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); |