aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/sleep.c
diff options
context:
space:
mode:
authorZhao Yakui <yakui.zhao@intel.com>2009-03-18 04:36:25 -0400
committerLen Brown <len.brown@intel.com>2009-04-03 12:05:13 -0400
commit2a9ef8e1a856be8e526bb9b10fb98c5012f6e3f8 (patch)
tree4fbcf37ba51bc65131afe2b6c4818d9ba89b299a /drivers/acpi/sleep.c
parent07de5bdb7bad607e29dc17c345717403a76a334c (diff)
ACPI: suspend: Add the Pansonic CF51 box to the dmi check table
The Pansonic CF51-2L requires "acpi_sleep=old_ordering", so invoke it automatically via DMI. http://bugzilla.kernel.org/show_bug.cgi?id=12561 Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/sleep.c')
-rw-r--r--drivers/acpi/sleep.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c
index 00456fccfa38..31ff2a9a03d7 100644
--- a/drivers/acpi/sleep.c
+++ b/drivers/acpi/sleep.c
@@ -394,6 +394,15 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
394 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite L300"), 394 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite L300"),
395 }, 395 },
396 }, 396 },
397 {
398 .callback = init_old_suspend_ordering,
399 .ident = "Panasonic CF51-2L",
400 .matches = {
401 DMI_MATCH(DMI_BOARD_VENDOR,
402 "Matsushita Electric Industrial Co.,Ltd."),
403 DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
404 },
405 },
397 {}, 406 {},
398}; 407};
399#endif /* CONFIG_SUSPEND */ 408#endif /* CONFIG_SUSPEND */