diff options
author | Matt Domsch <Matt_Domsch@dell.com> | 2007-03-23 23:58:07 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-03-26 14:13:07 -0700 |
commit | f7a9dae7c41580761e7f6de1d508c010b1b44993 (patch) | |
tree | db6f030aba7428e0674a42f85ec2d6254be27281 /arch | |
parent | e0f2e3a06be513352cb4955313ed7e55909acd84 (diff) | |
download | linux-f7a9dae7c41580761e7f6de1d508c010b1b44993.tar.gz linux-f7a9dae7c41580761e7f6de1d508c010b1b44993.tar.xz |
pci: set pci=bfsort for PowerEdge R900
This patch automatically enables pci=bfsort for the Dell PowerEdge
R900. This is necessary to ensure the onboard NICs enumerate in the
proper order, similar to the other systems already on the list.
Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/pci/common.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/i386/pci/common.c b/arch/i386/pci/common.c index 1bb069372143..948436665385 100644 --- a/arch/i386/pci/common.c +++ b/arch/i386/pci/common.c @@ -193,6 +193,14 @@ static struct dmi_system_id __devinitdata pciprobe_dmi_table[] = { }, { .callback = set_bf_sort, + .ident = "Dell PowerEdge R900", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell"), + DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge R900"), + }, + }, + { + .callback = set_bf_sort, .ident = "HP ProLiant BL20p G3", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "HP"), |