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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user