[CPUFREQ] speedstep-smi: it works on at least one P4M The speedstep-smi driver actually works on >=1 notebook with a Pentium 4-M CPU where all other cpufreq drivers fail. Therefore, allow speedstep-smi on P4Ms again, but warn users of likely failure Signed-off-by: Dominik Brodowski --- arch/i386/kernel/cpu/cpufreq/speedstep-smi.c | 3 +++ 1 files changed, 3 insertions(+) Index: 2.6.11-rc3+/arch/i386/kernel/cpu/cpufreq/speedstep-smi.c =================================================================== --- 2.6.11-rc3+.orig/arch/i386/kernel/cpu/cpufreq/speedstep-smi.c 2004-12-25 09:59:47.000000000 +0100 +++ 2.6.11-rc3+/arch/i386/kernel/cpu/cpufreq/speedstep-smi.c 2005-02-09 20:25:23.000000000 +0100 @@ -357,6 +357,9 @@ case SPEEDSTEP_PROCESSOR_PIII_C: case SPEEDSTEP_PROCESSOR_PIII_C_EARLY: break; + case SPEEDSTEP_PROCESSOR_P4M: + printk(KERN_INFO "speedstep-smi: you're trying to use this cpufreq driver on a Pentium 4-based CPU. Most likely it will not work.\n"); + break; default: speedstep_processor = 0; }