diff options
author | msmith <msmith@FreeBSD.org> | 2000-10-28 07:04:07 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2000-10-28 07:04:07 +0000 |
commit | 5dd41ba26a9d55d5776c7a79e5fe9411f9c19765 (patch) | |
tree | c2169ae14ae01a687c74fdfdbe8507370e6eee7a /sys/pci | |
parent | de46dd559688649a783107ea53e1893a19b6f91d (diff) | |
download | FreeBSD-src-5dd41ba26a9d55d5776c7a79e5fe9411f9c19765.zip FreeBSD-src-5dd41ba26a9d55d5776c7a79e5fe9411f9c19765.tar.gz |
Allow PCI busses to be connected to host bridges detected by ACPI as well.
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/pci/pci.c b/sys/pci/pci.c index 0c423d6..255cc2e 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -1434,3 +1434,4 @@ static driver_t pci_driver = { 1, /* no softc */ }; DRIVER_MODULE(pci, pcib, pci_driver, pci_devclass, pci_modevent, 0); +DRIVER_MODULE(pci, acpi_pcib, pci_driver, pci_devclass, pci_modevent, 0); |