From bab893586b44ba2eeb71b1f51837477f6196d82a Mon Sep 17 00:00:00 2001 From: "Kenneth D. Merry" Date: Sat, 11 Feb 2012 00:28:30 +0000 Subject: [PATCH] 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 --- sys/dev/mps/mps_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mps/mps_pci.c b/sys/dev/mps/mps_pci.c index c50dd25ad97..f2bdcb0f0b4 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); }