diff options
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/pci/common.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index f4386990b150..862746390666 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -315,6 +315,22 @@ static struct dmi_system_id __devinitdata pciprobe_dmi_table[] = { | |||
315 | }, | 315 | }, |
316 | }, | 316 | }, |
317 | #endif | 317 | #endif |
318 | { | ||
319 | .callback = set_bf_sort, | ||
320 | .ident = "HP ProLiant DL385 G2", | ||
321 | .matches = { | ||
322 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), | ||
323 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL385 G2"), | ||
324 | }, | ||
325 | }, | ||
326 | { | ||
327 | .callback = set_bf_sort, | ||
328 | .ident = "HP ProLiant DL585 G2", | ||
329 | .matches = { | ||
330 | DMI_MATCH(DMI_SYS_VENDOR, "HP"), | ||
331 | DMI_MATCH(DMI_PRODUCT_NAME, "ProLiant DL585 G2"), | ||
332 | }, | ||
333 | }, | ||
318 | {} | 334 | {} |
319 | }; | 335 | }; |
320 | 336 | ||