diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pci.c | 1 | ||||
-rw-r--r-- | sys/dev/pci/pcivar.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 1d47e84..cfda6c7 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1147,6 +1147,7 @@ pci_probe_nomatch(device_t dev, device_t child) desc = pci_ata_match(child); if (!desc) desc = pci_usb_match(child); if (!desc) desc = pci_vga_match(child); + if (!desc) desc = pci_chip_match(child); if (!desc) { desc = "unknown card"; unknown++; diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h index 725d38f..b767616 100644 --- a/sys/dev/pci/pcivar.h +++ b/sys/dev/pci/pcivar.h @@ -150,6 +150,7 @@ struct pci_devinfo { const char *pci_ata_match(struct device *dev); const char *pci_usb_match(struct device *dev); const char *pci_vga_match(struct device *dev); +const char *pci_chip_match(struct device *dev); /* low level PCI config register functions provided by pcibus.c */ |