diff options
Diffstat (limited to 'include/linux/cpufreq.h')
-rw-r--r-- | include/linux/cpufreq.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 684caf067003..d01a74fbc4db 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
@@ -42,13 +42,6 @@ enum cpufreq_table_sorting { | |||
42 | CPUFREQ_TABLE_SORTED_DESCENDING | 42 | CPUFREQ_TABLE_SORTED_DESCENDING |
43 | }; | 43 | }; |
44 | 44 | ||
45 | struct cpufreq_freqs { | ||
46 | unsigned int cpu; /* cpu nr */ | ||
47 | unsigned int old; | ||
48 | unsigned int new; | ||
49 | u8 flags; /* flags of cpufreq_driver, see below. */ | ||
50 | }; | ||
51 | |||
52 | struct cpufreq_cpuinfo { | 45 | struct cpufreq_cpuinfo { |
53 | unsigned int max_freq; | 46 | unsigned int max_freq; |
54 | unsigned int min_freq; | 47 | unsigned int min_freq; |
@@ -156,6 +149,13 @@ struct cpufreq_policy { | |||
156 | struct thermal_cooling_device *cdev; | 149 | struct thermal_cooling_device *cdev; |
157 | }; | 150 | }; |
158 | 151 | ||
152 | struct cpufreq_freqs { | ||
153 | struct cpufreq_policy *policy; | ||
154 | unsigned int old; | ||
155 | unsigned int new; | ||
156 | u8 flags; /* flags of cpufreq_driver, see below. */ | ||
157 | }; | ||
158 | |||
159 | /* Only for ACPI */ | 159 | /* Only for ACPI */ |
160 | #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */ | 160 | #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */ |
161 | #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */ | 161 | #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */ |