]> Joshua Wise's Git repositories - netwatch.git/blobdiff - pci/pci.c
Fix PCI probe. Fix bothering. Fix the all. Fix outw order for 3cxxx.
[netwatch.git] / pci / pci.c
index c7385decee845afaa671464b0b4489a8b3e4af07..fbea894365e2de1a30f3a5bf1b0164a0c2240b0e 100644 (file)
--- a/pci/pci.c
+++ b/pci/pci.c
@@ -109,7 +109,7 @@ static int _probefn(pci_dev_t *dev, void *d)
        for (i = 0; i < driver->id_count; i++)
                if ((dev->vid == driver->ids[i].vid) && (dev->did == driver->ids[i].did))
                {
-                       outputf("Probing PCI device: %s (%s)", driver->ids[i].name ? driver->ids[i].name : driver->name, driver->ids[i].friendlyname ? driver->ids[i].friendlyname : "no friendly name");
+                       outputf("Probing PCI device: %s", driver->ids[i].name ? driver->ids[i].name : driver->name);
                        return driver->probe(dev, d);
                }
        return 0;
This page took 0.022849 seconds and 4 git commands to generate.