Query PCI_FILL_{BASES,SIZES} in pci_fill_info too

The previous fix for missing pci_fill_info() was incomplete, it caused
the device to be found but changing the mac did not succeed. Fix it up
as separate commit, as the other commit is already packaged.
This commit is contained in:
Oliver Smith 2022-05-16 14:03:10 +02:00
parent 347924cc08
commit 4efcedfeca
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ static void iterate_devices(struct pci_access *pa, char *filter_id, char *filter
continue;
/* our own clumsy implementation of filtering */
pci_fill_info(p, PCI_FILL_IDENT);
pci_fill_info(p, PCI_FILL_IDENT | PCI_FILL_BASES | PCI_FILL_SIZES);
if (p->vendor_id != 0x10ec || p->device_id != 0x8168)
continue;