1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67378
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;
}