Return BUS_PROBE_GENERIC rather BUS_PROBE_DEFAULT for generic CBB we match.

Reviewed by:	jhb@
This commit is contained in:
imp 2008-10-02 22:50:11 +00:00
parent 8ab83d3e56
commit 258f054978

View File

@ -252,7 +252,7 @@ cbb_pci_probe(device_t brdev)
if (baseclass == PCIC_BRIDGE &&
subclass == PCIS_BRIDGE_CARDBUS && progif == 0) {
device_set_desc(brdev, "PCI-CardBus Bridge");
return (BUS_PROBE_DEFAULT);
return (BUS_PROBE_GENERIC);
}
return (ENXIO);
}