diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/cmd_pci.c b/common/cmd_pci.c index 5a6048c9260..e3a77e35820 100644 --- a/common/cmd_pci.c +++ b/common/cmd_pci.c @@ -71,6 +71,9 @@ void pciinfo(int BusNum, int ShortPCIListing) dev = PCI_BDF(BusNum, Device, Function); + if (pci_skip_dev(hose, dev)) + continue; + pci_read_config_word(dev, PCI_VENDOR_ID, &VendorID); if ((VendorID == 0xFFFF) || (VendorID == 0x0000)) continue; |