diff options
author | 2015-03-02 22:50:10 +0000 | |
---|---|---|
committer | 2015-03-02 22:50:10 +0000 | |
commit | 9015ace1037edcf0524a19f5b391e00222a2304e (patch) | |
tree | 19278dba2ab08b6d0c1ba9badbd189f0641561e7 | |
parent | Make setting the MAC context bit for 11g protection when transmitting (diff) | |
download | wireguard-openbsd-9015ace1037edcf0524a19f5b391e00222a2304e.tar.xz wireguard-openbsd-9015ace1037edcf0524a19f5b391e00222a2304e.zip |
match on 7265
ok kettenis@ stsp@ phessler@
-rw-r--r-- | sys/dev/pci/if_iwm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index 3679cc9959e..0e0fc6785a0 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.31 2015/03/02 22:31:03 jsg Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.32 2015/03/02 22:50:10 jsg Exp $ */ /* * Copyright (c) 2014 genua mbh <info@genua.de> @@ -6365,6 +6365,8 @@ typedef void *iwm_match_t; static const struct pci_matchid iwm_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_7260_1 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_7260_2 }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_7265_1 }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_7265_2 }, }; int |