[PATCH] (resend) support for 900MHz Pentium M for speedstep-centrino.c

From: Jeremy Fitzhardinge (jeremy@goop.org)
Date: Sun Jul 20 2003 - 14:16:45 EST


The 900MHz Pentium M has two spaces before the frequency:
"Intel(R) Pentium(R) M processor 900MHz"

This patch adds a 2nd CPU macro (_CPU) which also takes the
stringified speed so that extra spacing can be added.

        J

 i386/kernel/cpu/cpufreq/speedstep-centrino.c | 7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff -puN
arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c~centrino-900MHz
arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c

---
local-2.5/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c~centrino-900MHz	2003-07-12 16:38:45.000000000 -0700
+++
local-2.5-jeremy/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c	2003-07-13 00:37:31.000000000 -0700
@@ -156,14 +156,15 @@ static struct cpufreq_frequency_table op
 };
 #undef OP
 
-#define CPU(max)	\
-	{ "Intel(R) Pentium(R) M processor " #max "MHz", (max)*1000, op_##max
}
+#define _CPU(max, name)	\
+	{ "Intel(R) Pentium(R) M processor " name "MHz", (max)*1000, op_##max
}
+#define CPU(max)	_CPU(max, #max)
 
 /* CPU models, their operating frequency range, and freq/voltage
    operating points */
 static const struct cpu_model models[] = 
 {
-	CPU( 900),
+       _CPU( 900, " 900"),
 	CPU(1100),
 	CPU(1200),
 	CPU(1300),

_

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Jul 23 2003 - 22:00:40 EST