processor_idle.c vs Lindent resulted in something of a trainwreck
with inconsistent whitespace.  This diff rearranges the
processor_power_dmi_table to look like it did before that accident,
and adds two additional BIOS's to the list as encountered by
Fedora users.

https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=165590

Signed-off-by: Dave Jones <[EMAIL PROTECTED]>

--- linux-2.6.13/drivers/acpi/processor_idle.c~ 2005-09-09 19:24:25.000000000 
-0400
+++ linux-2.6.13/drivers/acpi/processor_idle.c  2005-09-09 19:33:18.000000000 
-0400
@@ -94,22 +94,27 @@ static int set_max_cstate(struct dmi_sys
 }
 
 static struct dmi_system_id __initdata processor_power_dmi_table[] = {
-       {set_max_cstate, "IBM ThinkPad R40e", {
-                                              DMI_MATCH(DMI_BIOS_VENDOR,
-                                                        "IBM"),
-                                              DMI_MATCH(DMI_BIOS_VERSION,
-                                                        "1SET60WW")},
+       { set_max_cstate, "IBM ThinkPad R40e", {
+        DMI_MATCH(DMI_BIOS_VENDOR, "IBM"),
+        DMI_MATCH(DMI_BIOS_VERSION, "1SET60WW")},
         (void *)1},
+       { set_max_cstate, "IBM ThinkPad R40e", {
+        DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
+        DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW")},
+        (void*)1},
+       { set_max_cstate, "IBM ThinkPad R40e", {
+        DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
+        DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") },
+        (void*)1},
+
        {set_max_cstate, "Medion 41700", {
-                                         DMI_MATCH(DMI_BIOS_VENDOR,
-                                                   "Phoenix Technologies LTD"),
-                                         DMI_MATCH(DMI_BIOS_VERSION,
-                                                   "R01-A1J")}, (void *)1},
+        DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
+        DMI_MATCH(DMI_BIOS_VERSION, "R01-A1J")},
+        (void *)1},
+
        {set_max_cstate, "Clevo 5600D", {
-                                        DMI_MATCH(DMI_BIOS_VENDOR,
-                                                  "Phoenix Technologies LTD"),
-                                        DMI_MATCH(DMI_BIOS_VERSION,
-                                                  
"SHE845M0.86C.0013.D.0302131307")},
+        DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
+        DMI_MATCH(DMI_BIOS_VERSION, "SHE845M0.86C.0013.D.0302131307")},
         (void *)2},
        {},
 };
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to