Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/reboot: Blacklist Dell OptiPlex 990 known to require PCI reboot

Dell OptiPlex 990 is known to require PCI reboot, so add it to
the reboot blacklist in pci_reboot_dmi_table[].

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Link: http://lkml.kernel.org/r/201111160019.51303.rjw@sisk.pl
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Rafael J. Wysocki and committed by
Ingo Molnar
6be30bb7 b495e039

+8
+8
arch/x86/kernel/reboot.c
··· 443 443 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6420"), 444 444 }, 445 445 }, 446 + { /* Handle problems with rebooting on the OptiPlex 990. */ 447 + .callback = set_pci_reboot, 448 + .ident = "Dell OptiPlex 990", 449 + .matches = { 450 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 451 + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), 452 + }, 453 + }, 446 454 { } 447 455 }; 448 456