diff options
author | 2019-11-20 16:14:51 +0000 | |
---|---|---|
committer | 2019-11-20 16:14:51 +0000 | |
commit | 86ef042300be708f44f851480d755148f8cc212a (patch) | |
tree | ff85bdbcf5f4e72eb9d6d9ab5a3d6a477ac870a5 | |
parent | Check for a too short answer packet in all callback functions because (diff) | |
download | wireguard-openbsd-86ef042300be708f44f851480d755148f8cc212a.tar.xz wireguard-openbsd-86ef042300be708f44f851480d755148f8cc212a.zip |
Correctly match another 9560-based device.
From Bryan Vyhmeister
-rw-r--r-- | sys/dev/pci/if_iwm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index 9e4f9562f7f..3284d345cb0 100644 --- a/sys/dev/pci/if_iwm.c +++ b/sys/dev/pci/if_iwm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwm.c,v 1.283 2019/11/18 18:53:11 stsp Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.284 2019/11/20 16:14:51 patrick Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh <info@genua.de> @@ -8559,6 +8559,7 @@ iwm_attach(struct device *parent, struct device *self, void *aux) sc->sc_mqrx_supported = 1; break; case PCI_PRODUCT_INTEL_WL_9560_1: + case PCI_PRODUCT_INTEL_WL_9560_2: sc->sc_fwname = "iwm-9000-34"; sc->host_interrupt_operation_mode = 0; sc->sc_device_family = IWM_DEVICE_FAMILY_9000; |