Skip to content

Commit 57a6fa9

Browse files
committed
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: x86: Make Dell Latitude E6420 use reboot=pci x86: Make Dell Latitude E5420 use reboot=pci
2 parents ad21b11 + a536877 commit 57a6fa9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

arch/x86/kernel/reboot.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,22 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = {
427427
DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"),
428428
},
429429
},
430+
{ /* Handle problems with rebooting on the Latitude E5420. */
431+
.callback = set_pci_reboot,
432+
.ident = "Dell Latitude E5420",
433+
.matches = {
434+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
435+
DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5420"),
436+
},
437+
},
438+
{ /* Handle problems with rebooting on the Latitude E6420. */
439+
.callback = set_pci_reboot,
440+
.ident = "Dell Latitude E6420",
441+
.matches = {
442+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
443+
DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6420"),
444+
},
445+
},
430446
{ }
431447
};
432448

0 commit comments

Comments
 (0)