All of lore.kernel.org
 help / color / mirror / Atom feed
* processor_idle.c indentation fixes.
@ 2005-09-09 23:38 Dave Jones
  0 siblings, 0 replies; only message in thread
From: Dave Jones @ 2005-09-09 23:38 UTC (permalink / raw)
  To: len.brown; +Cc: linux-kernel

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 <davej@redhat.com>

--- 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},
 	{},
 };

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-09-09 23:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-09 23:38 processor_idle.c indentation fixes Dave Jones

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.