Commit 51ac3d2f0c505ca36ffc9715ffd518d756589ef8

Authored by Charlotte Richardson
Committed by Bjorn Helgaas
1 parent 19c5392eb1

PCI: Add NEC variants to Stratus ftServer PCIe DMI check

NEC OEMs the same platforms as Stratus does, which have multiple devices on
some PCIe buses under downstream ports.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=51331
Fixes: 1278998f8ff6 ("PCI: Work around Stratus ftServer broken PCIe hierarchy (fix DMI check)")
Signed-off-by: Charlotte Richardson <charlotte.richardson@stratus.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
CC: stable@vger.kernel.org	# v3.5+
CC: Myron Stowe <myron.stowe@redhat.com>

Showing 1 changed file with 16 additions and 0 deletions Side-by-side Diff

arch/x86/pci/common.c
... ... @@ -448,6 +448,22 @@
448 448 DMI_MATCH(DMI_PRODUCT_NAME, "ftServer"),
449 449 },
450 450 },
  451 + {
  452 + .callback = set_scan_all,
  453 + .ident = "Stratus/NEC ftServer",
  454 + .matches = {
  455 + DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
  456 + DMI_MATCH(DMI_PRODUCT_NAME, "Express5800/R32"),
  457 + },
  458 + },
  459 + {
  460 + .callback = set_scan_all,
  461 + .ident = "Stratus/NEC ftServer",
  462 + .matches = {
  463 + DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
  464 + DMI_MATCH(DMI_PRODUCT_NAME, "Express5800/R31"),
  465 + },
  466 + },
451 467 {}
452 468 };
453 469