mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
731634f7fe
commit
bab893586b
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue