Skip to content

Commit 8412da7

Browse files
vsyrjalaIngo Molnar
authored andcommitted
x86/reboot: Add reboot quirk for Dell Latitude E5410
Dell Latitude E5410 needs reboot=pci to actually reboot. Signed-off-by: Ville Syrjälä <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
1 parent 0dbc607 commit 8412da7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

arch/x86/kernel/reboot.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
326326
DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"),
327327
},
328328
},
329+
{ /* Handle problems with rebooting on the Latitude E5410. */
330+
.callback = set_pci_reboot,
331+
.ident = "Dell Latitude E5410",
332+
.matches = {
333+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
334+
DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5410"),
335+
},
336+
},
329337
{ /* Handle problems with rebooting on the Latitude E5420. */
330338
.callback = set_pci_reboot,
331339
.ident = "Dell Latitude E5420",

0 commit comments

Comments
 (0)