diff options
Diffstat (limited to 'arch/x86/kernel/reboot.c')
-rw-r--r-- | arch/x86/kernel/reboot.c | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 563ed91e6faa..7e920bff99a3 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
@@ -326,6 +326,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { | |||
326 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"), | 326 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"), |
327 | }, | 327 | }, |
328 | }, | 328 | }, |
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 | }, | ||
329 | { /* Handle problems with rebooting on the Latitude E5420. */ | 337 | { /* Handle problems with rebooting on the Latitude E5420. */ |
330 | .callback = set_pci_reboot, | 338 | .callback = set_pci_reboot, |
331 | .ident = "Dell Latitude E5420", | 339 | .ident = "Dell Latitude E5420", |
@@ -352,12 +360,28 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { | |||
352 | }, | 360 | }, |
353 | { /* Handle problems with rebooting on the Precision M6600. */ | 361 | { /* Handle problems with rebooting on the Precision M6600. */ |
354 | .callback = set_pci_reboot, | 362 | .callback = set_pci_reboot, |
355 | .ident = "Dell OptiPlex 990", | 363 | .ident = "Dell Precision M6600", |
356 | .matches = { | 364 | .matches = { |
357 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | 365 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
358 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision M6600"), | 366 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision M6600"), |
359 | }, | 367 | }, |
360 | }, | 368 | }, |
369 | { /* Handle problems with rebooting on the Dell PowerEdge C6100. */ | ||
370 | .callback = set_pci_reboot, | ||
371 | .ident = "Dell PowerEdge C6100", | ||
372 | .matches = { | ||
373 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
374 | DMI_MATCH(DMI_PRODUCT_NAME, "C6100"), | ||
375 | }, | ||
376 | }, | ||
377 | { /* Some C6100 machines were shipped with vendor being 'Dell'. */ | ||
378 | .callback = set_pci_reboot, | ||
379 | .ident = "Dell PowerEdge C6100", | ||
380 | .matches = { | ||
381 | DMI_MATCH(DMI_SYS_VENDOR, "Dell"), | ||
382 | DMI_MATCH(DMI_PRODUCT_NAME, "C6100"), | ||
383 | }, | ||
384 | }, | ||
361 | { } | 385 | { } |
362 | }; | 386 | }; |
363 | 387 | ||