]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/filter.c
Fix inconsistent bus centric view between the sysfs and proc methods
[pciutils.git] / lib / filter.c
index 2bedc95e050a4f168b356747211129e31a3fe4da..0b7ce6e6e9bb6df8500683caf2001d2e0f07b3c1 100644 (file)
@@ -114,7 +114,7 @@ pci_filter_match(struct pci_filter *f, struct pci_dev *d)
     return 0;
   if (f->device >= 0 || f->vendor >= 0)
     {
-      pci_fill_info(d, PCI_FILL_IDENT);
+      pci_fill_info_v31(d, PCI_FILL_IDENT);
       if ((f->device >= 0 && f->device != d->device_id) ||
          (f->vendor >= 0 && f->vendor != d->vendor_id))
        return 0;