diff options
author | jhb <jhb@FreeBSD.org> | 2003-10-31 21:00:37 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-10-31 21:00:37 +0000 |
commit | 0d85f2784508f691ce36e92a70aa1292de670ded (patch) | |
tree | 5f651aba44dc70b03ec771344a0a5770e2e7efce /sys/i386/pci | |
parent | ab63139b0972a7c45e4fdc52f8df0b1af08a06d1 (diff) | |
download | FreeBSD-src-0d85f2784508f691ce36e92a70aa1292de670ded.zip FreeBSD-src-0d85f2784508f691ce36e92a70aa1292de670ded.tar.gz |
Lower the priority of the legacy host to pci bridge driver so that other
non-ACPI host-bridge drivers can preempt this driver.
Diffstat (limited to 'sys/i386/pci')
-rw-r--r-- | sys/i386/pci/pci_bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/pci/pci_bus.c b/sys/i386/pci/pci_bus.c index 2a1dc2f..f7d4631 100644 --- a/sys/i386/pci/pci_bus.c +++ b/sys/i386/pci/pci_bus.c @@ -420,7 +420,7 @@ legacy_pcib_probe(device_t dev) if (pci_cfgregopen() == 0) return ENXIO; - return 0; + return -100; } int |