Return BUS_PROBE_DEFAULT instead of BUS_PROBE_VENDOR from the mps driver

probe routine.

This will allow LSI to ship drivers that return BUS_PROBE_VENDOR to
override the in-tree version of the driver.

MFC after:	3 days
This commit is contained in:
Kenneth D. Merry 2012-02-11 00:28:30 +00:00
parent 731634f7fe
commit bab893586b

View file

@ -172,7 +172,7 @@ mps_pci_probe(device_t dev)
if ((id = mps_find_ident(dev)) != NULL) {
device_set_desc(dev, id->desc);
return (BUS_PROBE_VENDOR);
return (BUS_PROBE_DEFAULT);
}
return (ENXIO);
}