aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/i386/kernel/cpu/cpufreq/longhaul.c4
-rw-r--r--arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c
index 04e3563da4fe..06aa76049b80 100644
--- a/arch/i386/kernel/cpu/cpufreq/longhaul.c
+++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c
@@ -473,11 +473,11 @@ static void __init longhaul_setup_voltagescaling(void)
473 } 473 }
474 474
475 if (vrmrev==0) { 475 if (vrmrev==0) {
476 dprintk ("VRM 8.5 \n"); 476 dprintk ("VRM 8.5\n");
477 memcpy (voltage_table, vrm85scales, sizeof(voltage_table)); 477 memcpy (voltage_table, vrm85scales, sizeof(voltage_table));
478 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/25; 478 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/25;
479 } else { 479 } else {
480 dprintk ("Mobile VRM \n"); 480 dprintk ("Mobile VRM\n");
481 memcpy (voltage_table, mobilevrmscales, sizeof(voltage_table)); 481 memcpy (voltage_table, mobilevrmscales, sizeof(voltage_table));
482 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/5; 482 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/5;
483 } 483 }
diff --git a/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c b/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c
index e70f9b20538c..c397b6220430 100644
--- a/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c
+++ b/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c
@@ -259,7 +259,7 @@ static int centrino_cpu_init_table(struct cpufreq_policy *policy)
259 259
260 if (model->op_points == NULL) { 260 if (model->op_points == NULL) {
261 /* Matched a non-match */ 261 /* Matched a non-match */
262 dprintk(KERN_INFO PFX "no table support for CPU model \"%s\": \n", 262 dprintk(KERN_INFO PFX "no table support for CPU model \"%s\"\n",
263 cpu->x86_model_id); 263 cpu->x86_model_id);
264#ifndef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI 264#ifndef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
265 dprintk(KERN_INFO PFX "try compiling with CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI enabled\n"); 265 dprintk(KERN_INFO PFX "try compiling with CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI enabled\n");