diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-09-26 20:49:53 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-09-26 20:49:53 +0200 |
commit | 474a83b76f6bde8a5f8f8e39d90181ca85d39f46 (patch) | |
tree | a9f8e2e790b74de50d85469ec79fb1c841c3da90 /arch/x86/kernel/reboot.c | |
parent | 16c21ae5ca636cfd38e581ebcf709c49d78ea56d (diff) | |
parent | 654fdd041227d7de1594baa61c58f2c87bd0640f (diff) | |
download | linux-stable-474a83b76f6bde8a5f8f8e39d90181ca85d39f46.tar.gz linux-stable-474a83b76f6bde8a5f8f8e39d90181ca85d39f46.tar.bz2 linux-stable-474a83b76f6bde8a5f8f8e39d90181ca85d39f46.zip |
Merge branch 'linus'
Merge in the relevant upstream merge point to queue up dependent patch.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/reboot.c')
-rw-r--r-- | arch/x86/kernel/reboot.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index ca42f6350b23..f0783a68db11 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c @@ -352,12 +352,28 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { }, { /* Handle problems with rebooting on the Precision M6600. */ .callback = set_pci_reboot, - .ident = "Dell OptiPlex 990", + .ident = "Dell Precision M6600", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), DMI_MATCH(DMI_PRODUCT_NAME, "Precision M6600"), }, }, + { /* Handle problems with rebooting on the Dell PowerEdge C6100. */ + .callback = set_pci_reboot, + .ident = "Dell PowerEdge C6100", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "C6100"), + }, + }, + { /* Some C6100 machines were shipped with vendor being 'Dell'. */ + .callback = set_pci_reboot, + .ident = "Dell PowerEdge C6100", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell"), + DMI_MATCH(DMI_PRODUCT_NAME, "C6100"), + }, + }, { } }; |