Compare commits

..

No commits in common. "347924cc088f993a3123aed3cf22ec691700f305" and "189a39639d50cba600db10b93cbe71519c78f9b4" have entirely different histories.

2 changed files with 0 additions and 10 deletions

7
debian/changelog vendored
View File

@ -1,10 +1,3 @@
rtl8168-eeprom (1.0.1) unstable; urgency=medium
* Fix missing pci_fill_info()
* Exit with error if no device was found
-- Oliver Smith <osmith@sysmocom.de> Mon, 16 May 2022 10:49:48 +0200
rtl8168-eeprom (1.0.0) unstable; urgency=medium
* Initial debian packaging.

View File

@ -466,7 +466,6 @@ 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);
if (p->vendor_id != 0x10ec || p->device_id != 0x8168)
continue;
@ -498,8 +497,6 @@ static void iterate_devices(struct pci_access *pa, char *filter_id, char *filter
if (new_mac)
exit(0);
}
die("no matching device found!\n");
}
int main(int argc, char **argv)