mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Return BUS_PROBE_GENERIC rather BUS_PROBE_DEFAULT for generic CBB we match.
Reviewed by: jhb@
This commit is contained in:
parent
db494010a3
commit
a3f223e26a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue