]> git.hungrycats.org Git - linux/commitdiff
[PATCH] new summit ID
authorAlan Cox <alan@lxorguk.ukuu.org.uk>
Thu, 17 Apr 2003 09:28:14 +0000 (02:28 -0700)
committerLinus Torvalds <torvalds@home.transmeta.com>
Thu, 17 Apr 2003 09:28:14 +0000 (02:28 -0700)
include/asm-i386/mach-summit/mach_mpparse.h

index 6f43a885ef5949f9aa20e67e872fe8fe8467aa8d..d34f3df6468da6a26afd841ba146b95a7383ba8f 100644 (file)
@@ -19,6 +19,7 @@ static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
 {
        if (!strncmp(oem, "IBM ENSW", 8) && 
                        (!strncmp(productid, "VIGIL SMP", 9) 
+                        || !strncmp(productid, "EXA", 3)
                         || !strncmp(productid, "RUTHLESS SMP", 12))){
                x86_summit = 1;
                use_cyclone = 1; /*enable cyclone-timer*/
@@ -28,7 +29,9 @@ static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
 /* Hook from generic ACPI tables.c */
 static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id)
 {
-       if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "SERVIGIL", 8)){
+       if (!strncmp(oem_id, "IBM", 3) &&
+           (!strncmp(oem_table_id, "SERVIGIL", 8)
+            || !strncmp(oem_table_id, "EXA", 3))){
                x86_summit = 1;
                use_cyclone = 1; /*enable cyclone-timer*/
        }