From a3f223e26a75554e809ff7e95b9512b73df677e9 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 2 Oct 2008 22:50:11 +0000 Subject: [PATCH] Return BUS_PROBE_GENERIC rather BUS_PROBE_DEFAULT for generic CBB we match. Reviewed by: jhb@ --- sys/dev/pccbb/pccbb_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/pccbb/pccbb_pci.c b/sys/dev/pccbb/pccbb_pci.c index 6f258e13f84..49b9cd15094 100644 --- a/sys/dev/pccbb/pccbb_pci.c +++ b/sys/dev/pccbb/pccbb_pci.c @@ -252,7 +252,7 @@ cbb_pci_probe(device_t brdev) if (baseclass == PCIC_BRIDGE && subclass == PCIS_BRIDGE_CARDBUS && progif == 0) { device_set_desc(brdev, "PCI-CardBus Bridge"); - return (BUS_PROBE_DEFAULT); + return (BUS_PROBE_GENERIC); } return (ENXIO); } -- 2.45.2