diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | pci.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- fix inverted test for choosing between '8139cp' & '8139too' drivers (#53349) + Version 0.9.0 - 23 September 2009, Thierry Vignaud - display PCI revision (#42576) @@ -95,7 +95,7 @@ extern struct pciusb_entries pci_probe(void) { } class_prog = buf[PCI_CLASS_PROG]; - if (e->device == 0x10ec && e->subvendor == 0x8139) { + if (e->vendor == 0x10ec && e->device == 0x8139) { if (e->pci_revision < 0x20) e->module = strdup("8139too"); else |