diff options
| -rw-r--r-- | arch/x86/kernel/cpu/cpufreq/powernow-k8.c | 8 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/cpufreq/powernow-k8.h | 11 |
2 files changed, 4 insertions, 15 deletions
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index 1f55547d5b30..81cbe64ed6b4 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
| @@ -1094,7 +1094,7 @@ static int transition_frequency_fidvid(struct powernow_k8_data *data, | |||
| 1094 | freqs.old = find_khz_freq_from_fid(data->currfid); | 1094 | freqs.old = find_khz_freq_from_fid(data->currfid); |
| 1095 | freqs.new = find_khz_freq_from_fid(fid); | 1095 | freqs.new = find_khz_freq_from_fid(fid); |
| 1096 | 1096 | ||
| 1097 | for_each_cpu_mask_nr(i, *(data->available_cores)) { | 1097 | for_each_cpu(i, data->available_cores) { |
| 1098 | freqs.cpu = i; | 1098 | freqs.cpu = i; |
| 1099 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); | 1099 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1100 | } | 1100 | } |
| @@ -1102,7 +1102,7 @@ static int transition_frequency_fidvid(struct powernow_k8_data *data, | |||
| 1102 | res = transition_fid_vid(data, fid, vid); | 1102 | res = transition_fid_vid(data, fid, vid); |
| 1103 | freqs.new = find_khz_freq_from_fid(data->currfid); | 1103 | freqs.new = find_khz_freq_from_fid(data->currfid); |
| 1104 | 1104 | ||
| 1105 | for_each_cpu_mask_nr(i, *(data->available_cores)) { | 1105 | for_each_cpu(i, data->available_cores) { |
| 1106 | freqs.cpu = i; | 1106 | freqs.cpu = i; |
| 1107 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); | 1107 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 1108 | } | 1108 | } |
| @@ -1127,7 +1127,7 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, | |||
| 1127 | data->currpstate); | 1127 | data->currpstate); |
| 1128 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); | 1128 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
| 1129 | 1129 | ||
| 1130 | for_each_cpu_mask_nr(i, *(data->available_cores)) { | 1130 | for_each_cpu(i, data->available_cores) { |
| 1131 | freqs.cpu = i; | 1131 | freqs.cpu = i; |
| 1132 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); | 1132 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1133 | } | 1133 | } |
| @@ -1135,7 +1135,7 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, | |||
| 1135 | res = transition_pstate(data, pstate); | 1135 | res = transition_pstate(data, pstate); |
| 1136 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); | 1136 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
| 1137 | 1137 | ||
| 1138 | for_each_cpu_mask_nr(i, *(data->available_cores)) { | 1138 | for_each_cpu(i, data->available_cores) { |
| 1139 | freqs.cpu = i; | 1139 | freqs.cpu = i; |
| 1140 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); | 1140 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 1141 | } | 1141 | } |
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.h b/arch/x86/kernel/cpu/cpufreq/powernow-k8.h index 6c6698feade1..c9c1190b5e1f 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.h +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.h | |||
| @@ -223,14 +223,3 @@ static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, unsigned | |||
| 223 | 223 | ||
| 224 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table); | 224 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table); |
| 225 | static int fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table); | 225 | static int fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table); |
| 226 | |||
| 227 | #ifdef CONFIG_SMP | ||
| 228 | static inline void define_siblings(int cpu, cpumask_t cpu_sharedcore_mask[]) | ||
| 229 | { | ||
| 230 | } | ||
| 231 | #else | ||
| 232 | static inline void define_siblings(int cpu, cpumask_t cpu_sharedcore_mask[]) | ||
| 233 | { | ||
| 234 | cpu_set(0, cpu_sharedcore_mask[0]); | ||
| 235 | } | ||
| 236 | #endif | ||
