mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
The 6000 series gen2 adapters have 2 firmware images, one with
advanced btcoex support and one without.
This commit is contained in:
parent
d51f8d2024
commit
57becf59ea
1 changed files with 4 additions and 2 deletions
|
|
@ -816,9 +816,11 @@ iwn5000_attach(struct iwn_softc *sc, uint16_t pid)
|
|||
break;
|
||||
case IWN_HW_REV_TYPE_6005:
|
||||
sc->limits = &iwn6000_sensitivity_limits;
|
||||
sc->fwname = "iwn6005fw";
|
||||
if (pid != 0x0082 && pid != 0x0085)
|
||||
if (pid != 0x0082 && pid != 0x0085) {
|
||||
sc->fwname = "iwn6000g2bfw";
|
||||
sc->sc_flags |= IWN_FLAG_ADV_BTCOEX;
|
||||
} else
|
||||
sc->fwname = "iwn6000g2afw";
|
||||
break;
|
||||
default:
|
||||
device_printf(sc->sc_dev, "adapter type %d not supported\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue