diff options
author | jhb <jhb@FreeBSD.org> | 2002-09-04 03:13:16 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-09-04 03:13:16 +0000 |
commit | 9b9a63123d964a69ecc775b9e7f749c58dce551c (patch) | |
tree | 3b0607051e1aa744454b34cbb15fa0c9d0c30d7b /sys/dev/pci/pci_private.h | |
parent | 63ecc1767c44e2826d7f11e6c57b0b4b27244562 (diff) | |
download | FreeBSD-src-9b9a63123d964a69ecc775b9e7f749c58dce551c.zip FreeBSD-src-9b9a63123d964a69ecc775b9e7f749c58dce551c.tar.gz |
- Make pci_load_vendor_data() static and do it during MOD_LOAD instead of
when the first PCI bus attaches.
- Create /dev/pci during MOD_LOAD as well.
- Destroy /dev/pci during MOD_UNLOAD (not that you can kldunload pci, but
might as well get the code right)
Diffstat (limited to 'sys/dev/pci/pci_private.h')
-rw-r--r-- | sys/dev/pci/pci_private.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/pci/pci_private.h b/sys/dev/pci/pci_private.h index c82e3f5..1b14bc8 100644 --- a/sys/dev/pci/pci_private.h +++ b/sys/dev/pci/pci_private.h @@ -68,6 +68,5 @@ struct pci_devinfo *pci_read_device(device_t pcib, int b, int s, int f, size_t size); void pci_print_verbose(struct pci_devinfo *dinfo); int pci_freecfg(struct pci_devinfo *dinfo); -void pci_load_vendor_data(void); #endif /* _PCI_PRIVATE_H_ */ |