diff options
author | Ori Bernstein <ori@eigenstate.org> | 2020-10-05 14:10:12 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2020-10-05 14:10:12 -0700 |
commit | 53234798c06dbac52c8717b7eab9cb4a126fe846 (patch) | |
tree | 8ba864287ba1561b50d0cfb3c1c4798c0eae0813 | |
parent | 204a96f163641de8ebca76a0b0873412b3b333aa (diff) |
etheriwl: add Wireless 8260 card
After the latest tweaks to the order of operations,
the card works.
-rw-r--r-- | sys/src/9/pc/etheriwl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/src/9/pc/etheriwl.c b/sys/src/9/pc/etheriwl.c index 6aba5023e..f7b353242 100644 --- a/sys/src/9/pc/etheriwl.c +++ b/sys/src/9/pc/etheriwl.c @@ -4348,6 +4348,10 @@ iwlpci(void) family = 0; fwname = nil; break; + case 0x24f3: /* Wireless AC 8260 */ + family = 8000; + fwname = "iwm-8000C-34"; + break; case 0x24fd: /* Wireless AC 8265 */ family = 8000; fwname = "iwm-8265-34"; |