summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorken <ken@FreeBSD.org>2012-02-11 00:28:30 +0000
committerken <ken@FreeBSD.org>2012-02-11 00:28:30 +0000
commitebc4133dca40744e7e5a2037e613bf403a16cc65 (patch)
tree4c04383a75b9f17d33e64170e0a117f32af74c1d
parentfccbffe7d83251aeb28395fd853f38f45bf3782d (diff)
downloadFreeBSD-src-ebc4133dca40744e7e5a2037e613bf403a16cc65.zip
FreeBSD-src-ebc4133dca40744e7e5a2037e613bf403a16cc65.tar.gz
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
-rw-r--r--sys/dev/mps/mps_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mps/mps_pci.c b/sys/dev/mps/mps_pci.c
index c50dd25..f2bdcb0 100644
--- a/sys/dev/mps/mps_pci.c
+++ b/sys/dev/mps/mps_pci.c
@@ -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);
}
OpenPOWER on IntegriCloud