Skip to content

Commit

Permalink
add device id of intel 9560 found in X1 Extreme
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-yuji committed Apr 19, 2019
1 parent 3272400 commit 1e4d0ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sys/dev/iwm/if_iwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -5617,6 +5617,7 @@ iwm_intr(void *arg)
#define PCI_PRODUCT_INTEL_WL_8260_2 0x24f4
#define PCI_PRODUCT_INTEL_WL_8265_1 0x24fd
#define PCI_PRODUCT_INTEL_WL_9560_1 0x9df0
#define PCI_PRODUCT_INTEL_WL_9560_2 0xa370

static const struct iwm_devices {
uint16_t device;
Expand All @@ -5635,6 +5636,7 @@ static const struct iwm_devices {
{ PCI_PRODUCT_INTEL_WL_8260_2, &iwm8260_cfg },
{ PCI_PRODUCT_INTEL_WL_8265_1, &iwm8265_cfg },
{ PCI_PRODUCT_INTEL_WL_9560_1, &iwm9560_cfg },
{ PCI_PRODUCT_INTEL_WL_9560_2, &iwm9560_cfg },
};

static int
Expand Down

1 comment on commit 1e4d0ad

@lwhsu
Copy link

@lwhsu lwhsu commented on 1e4d0ad May 21, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe it's 9560NGW. I'll add them once I have these work.

Please sign in to comment.