]> git.neil.brown.name Git - history.git/commitdiff
[CPUFREQ] Recognise another Dothan variant in speedstep driver.
authorDave Jones <davej@redhat.com>
Fri, 20 Aug 2004 21:40:20 +0000 (22:40 +0100)
committerDave Jones <davej@delerium.codemonkey.org.uk>
Fri, 20 Aug 2004 21:40:20 +0000 (22:40 +0100)
From: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Dave Jones <davej@redhat.com>
arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c

index 268dd71fa09644c84196ef4c5af329a2c4a500b4..56aafbde6377bef98656de58cc71aa45bbeaf912 100644 (file)
@@ -53,12 +53,14 @@ struct cpu_id
 enum {
        CPU_BANIAS,
        CPU_DOTHAN_A1,
+       CPU_DOTHAN_A2,
        CPU_DOTHAN_B0,
 };
 
 static const struct cpu_id cpu_ids[] = {
        [CPU_BANIAS]    = { 6,  9, 5 },
        [CPU_DOTHAN_A1] = { 6, 13, 1 },
+       [CPU_DOTHAN_A2] = { 6, 13, 2 },
        [CPU_DOTHAN_B0] = { 6, 13, 6 },
 };
 #define N_IDS  (sizeof(cpu_ids)/sizeof(cpu_ids[0]))
@@ -221,6 +223,7 @@ static struct cpu_model models[] =
 
        /* NULL model_name is a wildcard */
        { &cpu_ids[CPU_DOTHAN_A1], NULL, 0, NULL },
+       { &cpu_ids[CPU_DOTHAN_A2], NULL, 0, NULL },
        { &cpu_ids[CPU_DOTHAN_B0], NULL, 0, NULL },
 
        { NULL, }