diff options
author | imp <imp@FreeBSD.org> | 2008-10-02 22:50:11 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2008-10-02 22:50:11 +0000 |
commit | 258f05497837944148a818c01c8a3e6b0cf8750b (patch) | |
tree | ab4c519554168f73f8862e6718aade53da7959dd /sys/dev/pccbb/pccbb_pci.c | |
parent | 8ab83d3e564aba262c6a0a46614326361f2e2471 (diff) | |
download | FreeBSD-src-258f05497837944148a818c01c8a3e6b0cf8750b.zip FreeBSD-src-258f05497837944148a818c01c8a3e6b0cf8750b.tar.gz |
Return BUS_PROBE_GENERIC rather BUS_PROBE_DEFAULT for generic CBB we match.
Reviewed by: jhb@
Diffstat (limited to 'sys/dev/pccbb/pccbb_pci.c')
-rw-r--r-- | sys/dev/pccbb/pccbb_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pccbb/pccbb_pci.c b/sys/dev/pccbb/pccbb_pci.c index 6f258e1..49b9cd1 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); } |