Return -10000 in pci_hostb_probe to allow agp driver (disabled otherwise)

This commit is contained in:
Andrey A. Chernov 2000-10-20 15:40:05 +00:00
parent da0f52e1ea
commit c07f6a2dd1
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ pci_hostb_probe(device_t dev)
pci_get_subclass(dev) == PCIS_BRIDGE_HOST) {
device_set_desc(dev, "Host to PCI bridge");
device_quiet(dev);
return 0;
return -10000;
}
return ENXIO;
}

View File

@ -473,7 +473,7 @@ pci_hostb_probe(device_t dev)
pci_get_subclass(dev) == PCIS_BRIDGE_HOST) {
device_set_desc(dev, "Host to PCI bridge");
device_quiet(dev);
return 0;
return -10000;
}
return ENXIO;
}