diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-02-20 01:20:06 -0500 |
---|---|---|
committer | Luis Henriques <luis.henriques@canonical.com> | 2012-07-23 05:50:23 -0400 |
commit | 366e0516ffc71886d020da55b5c2fc975156b2ed (patch) | |
tree | 1c1fcfc21d112a441eb0d5ee687022c53a8e89b5 /arch | |
parent | eec4c6e80cacc5443b4e93dd3d262e4f94e5ef35 (diff) |
ACPI, x86: fix Dell M6600 ACPI reboot regression via DMI
BugLink: http://bugs.launchpad.net/bugs/1025406
commit 76eb9a30db4bc8fd172f9155247264b5f2686d7b upstream.
Dell Precision M6600 is known to require PCI reboot, so add it to
the reboot blacklist in pci_reboot_dmi_table[].
https://bugzilla.kernel.org/show_bug.cgi?id=42749
cc: x86@kernel.org
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/reboot.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 89c83bb99d4..814ae127d6a 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
@@ -484,6 +484,14 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = { | |||
484 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), | 484 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), |
485 | }, | 485 | }, |
486 | }, | 486 | }, |
487 | { /* Handle problems with rebooting on the Precision M6600. */ | ||
488 | .callback = set_pci_reboot, | ||
489 | .ident = "Dell OptiPlex 990", | ||
490 | .matches = { | ||
491 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
492 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision M6600"), | ||
493 | }, | ||
494 | }, | ||
487 | { } | 495 | { } |
488 | }; | 496 | }; |
489 | 497 | ||